Search found 3 matches

by Philippe
Thu Apr 29, 2004 9:38 pm
Forum: GFL SDK
Topic: EXIF problem [Delphi]
Replies: 6
Views: 4052

not, much of photographs do not have the problem
by Philippe
Wed Apr 28, 2004 8:39 pm
Forum: GFL SDK
Topic: gflRotate access violation (Delphi)
Replies: 3
Views: 2272

Hello,

I use the function in my project and i don't have problem.

var
InformationFichier: TGFL_File_Information;
LoadParam : TGFL_Load_Params;
Erreur : GFL_Error;
GFLImage : PGFL_Bitmap;
begin
Rotation := Rotation + 90;
if Rotation > 270 then Rotation := 0;
gflGetDefaultLoadParams ...
by Philippe
Wed Apr 28, 2004 8:32 pm
Forum: GFL SDK
Topic: EXIF problem [Delphi]
Replies: 6
Views: 4052

EXIF problem [Delphi]

Hello!

This is how I managed the EXIT in my file

gflGetDefaultLoadParams(LoadParam);
LoadParam.Flags := GFL_LOAD_METADATA;
Erreur := gflLoadBitmap(NomFichier, GFLImage, LoadParam, InformationFichier);
if GFLBitmapHasEXIF(GFLImage) = GFL_True then
Exif := gflBitmapGetEXIF(GFLImage, EXIF_MAIN_IFD ...