we are using GFLAx to change image formats and resolution. Conversion from EPS to any other format works as expected.
However, if we want to change the resolution of the attached jpeg from 300 to 100 DPI with following code:
Code: Select all
Dim x As GflAx.GflAx
x = New GflAx.GflAx
Dim sFilenameInput As String = "someFile"
x.LoadBitmap(sFilenameInput)
x.Xdpi = 100
x.Ydpi = 100
Dim sFilenameOutput As String = "someOutputFile"
x.SaveBitmap(sFilenameOutput)
x.FreeBitmap()
the resolution of the jpeg does not change and stays always at 300 DPI.
What are we doing wrong?
Thanks in advance
Regards
S.M.
Edit: I forgot to mention that we are using the latest GFLAx library