Multiple Language Support for Aspose.Slides for java

I am new to Aspose and I am facing one issue in Aspose.Slide.

There is a requirement in which the client needs to create PPT in differenet Language like Hindi, Urdu, Japaness, Arabic etc.

Kindly clarify the following queries

1) Does Aspose slide supports different language.

2) If Aspose supports this functionality, could you provide me the information as which API to use.

If possible could you share some code to provide the understanding about the API

Hi all,

I was able to resolve this issue. We can convert a String using the java.lang.string API and can create a UTF -8 charset which can be used to create the PPT.

The following is the code I used

byte[] utf8Bytes = data.getBytes("UTF8");

convertedText = new String(utf8Bytes,"UTF8");

pptdata.append(convertedText);

I have attached the PPT generated using this code.