How Can I Generate Full size image file from ppt Slide

Hi!

how can i generate Full size image from a ppt slide, i did create a thumbfile with

System.Drawing.Image image = slide.GetThumbnail();

but i have to generate fullsize image???

plz help me....

Hello Chintan,

GetThumbnail can generate full size images and thumbnails.
You can find description of this method and examples in the documentation.

Dear Chintan,

Thanks for considering Aspose.Slides for .NET.

To get image with higher resolution, you need to give scaling factor to the Slide.GetThumbnail

For example, you can try

Slide.GetThumbnail(1.0, 1.0)

Or

Slide.GetThumbnail(2.0, 2.0)

Or

Slide.GetThumbnail(3.0, 3.0); // this will give you 2160 x 1620 image

Thanks a lot,

Actully i did not pass any parameter to Slide.GetThumbnail( );

so it returnd 20% thumbnail,

Now I got it Thanks Again For Fast Reply