GFLAx + DrawImage

Discussions on GFL SDK, the graphic library for reading and writing graphic files

Moderators: XnTriq, helmut, xnview

Post Reply
Naghual
Posts: 1
Joined: Mon Mar 05, 2018 8:54 am

GFLAx + DrawImage

Post by Naghual »

Hello
I'm trying to merge two images through DrawImage (because Merge not funtioning).

Code: Select all

GflAx.LoadBitmap("C:\img.jpg");
GflAx.DrawImage("C:\img_PNG.png", 0, 0);
GflAx.SaveFormatName = "jpeg";
GflAx.SaveJPEGQuality = 80;
GflAx.SaveJPEGProgressive = -1;
GflAx.SaveBitmap("C:\img_OUT.jpg");
But the result in "C:\img_OUT.jpg" is almost equal (SaveJPEGQuality = 80) to source "C:\img.jpg".

Why? How to correct it?
Thanks in advance.

P.S. GflAX.dll version 3.0.0.4152
Post Reply