Search found 1 match

by Mobzga
Wed Jul 18, 2012 1:48 am
Forum: GFL SDK
Topic: Minor omission from GFL SDKs v3.40 LibGfl.pas (Delphi)
Replies: 4
Views: 6138

Re: Minor omission from GFL SDKs v3.40 LibGfl.pas (Delphi)

Hi,

I also have the same problem, but found the solution, you need to call unicode (WideChar instead of PChar) functions too.
In the delphi demo file "ImageView_Form.pas" you have this code near line 140:

e := gflLoadBitmap(PChar(filename), gfl_bmp, lp, finfo);

change to this

e ...