Aspose.Slides license issue - 'Evaluation Copy' still appears

I am using the java version of Aspose.Slides. The class I use for making the slides calls has a static init block where we instantiate the license.

Looking at the output (extracted slides), one can see watermarks with the “Evaluation copy” message on them. We have licensed Aspose Total.


Dear Upper,

Thanks for using Aspose Products.

Is it appearing on every source presentation, you use, or only in few of them?
Please send me your license file and source code to look into it.

We get our license file from our classpath and instantiate the license object in a static init block. However, the classloader doesn’t find the license file in this case so the stream passed to setLicense is empty.

We changed the location of the licesense file to be in our classpath and this appears to solve our problem.

Hi,

We have Aspose Total (Java) license.
We do Doc(x) to Html, Excel to Html and Html to Doc(x).
All the conversion are working fine.
However When I do PPT to Images, all the images(slides) are marked with
‘evaluation msg’.

Code to load the license is same for all type of conversions.

Am I missing any thing?


- Karthik

Hello Karthik,

If you use several Aspose libraries then most probably you imported wrong package with License class. Check the imported package or use License class with package name:

com.aspose.slides.License license = new com.aspose.slides.License();
license.setLicense(…);

Hi Alexey,


You are right. Its My Bad.
It worked.

I have a question, right now I do slides to images. Is it possible for me to do the other way around, images into a presentation?

Thank You.


- Karthik

To add a picture inside a slide, you should add a picture frame.

Please see, Adding Picture Frame to Slide