Yes please, can you provide me an example in Delphi of how to convert images in document to JPEG.
Regards
the size of save files in too big
-
- Site Admin
- Posts: 17521
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
I updated that topic: http://www.trichview.com/forums/viewtop ... 6749#26749
For converting only metafiles, you can add below
the following code:
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.
For converting only metafiles, you can add below
Code: Select all
if gr is TJPEGImage then
exit;
Code: Select all
if not (gr is TMetafile) then
exit;
Now you have access to protected forums, see the protected Announcements forum for new releases.