Page 2 of 2
Posted: Wed Apr 16, 2014 11:08 am
by resilux
Yes please, can you provide me an example in Delphi of how to convert images in document to JPEG.
Regards
Posted: Wed Apr 16, 2014 11:24 am
by Sergey Tkachenko
I updated that topic:
http://www.trichview.com/forums/viewtop ... 6749#26749
For converting only metafiles, you can add below
the following code:
Code: Select all
if not (gr is TMetafile) then
exit;
Note: when running in Delphi, this code generates exception when attempting to assign TMetafile to TBitmap. But these exceptions are in try..catch, so the code runs correctly.
Now you have access to protected forums, see the protected Announcements forum for new releases.
Posted: Wed Apr 16, 2014 11:36 am
by resilux
Thanks Works fine....
I will keep one eye on private fórums for next update.
Regards