|
I am trying to convert a pdf to a jpeg and I'm getting "LeadTools RasterException:PDF Capability is Required"
I have the Leadtools.dll, Leadtools.codecs.dll, most of the Leadtools.codecs. including pdf and jpg referenced.
Is there anything else I need to do? Is the pdf convert included in the Raster Imaging Pro?
Leadtools. RasterSupport.Unlock(RasterSupportType.Pro, theKey); RasterCodecs.Startup(); RasterCodecs codecs = new RasterCodecs(); RasterImage ri = codecs.Load(_strSrc); System.Drawing.Image img = ri.ConvertToGdiPlusImage(); img.Save(_strDst, ImageFormat.Jpeg); ri.Dispose(); RasterCodecs.Shutdown();
Thanks
|