Yes,
the original image has EXIF data.
Miguel Angel
Search found 82 matches
Save EXIF
Hello,
using
Exif: gflLoadExif = (Pchar (FileName1), 1)
get the EXIF data from a photo.
After editing the picture, when save the photo
(gflSaveBitmap (pchar (FileName), gfl_bmpS, SPS))
are not stored the EXIF data from the original photo. How do I save the EXIF data in the new file?
Greetings ...
using
Exif: gflLoadExif = (Pchar (FileName1), 1)
get the EXIF data from a photo.
After editing the picture, when save the photo
(gflSaveBitmap (pchar (FileName), gfl_bmpS, SPS))
are not stored the EXIF data from the original photo. How do I save the EXIF data in the new file?
Greetings ...
- Tue Aug 12, 2008 7:16 am
- Forum: GFL SDK
- Topic: Makernotes in EXIF
- Replies: 4
- Views: 2043
- Tue Aug 12, 2008 7:12 am
- Forum: GFL SDK
- Topic: Makernotes in EXIF
- Replies: 4
- Views: 2043
In the library libgfl.pas (Delphi) does not appear GFL_EXIF_WANT_MAKERNOTES and the HELP of library is out of date.
¿Can you indicate one example to get Makernotes?
Thanks
Miguel Angel
http://imagen3d.site88.net
¿Can you indicate one example to get Makernotes?
Thanks
Miguel Angel
http://imagen3d.site88.net
- Mon Aug 11, 2008 8:06 pm
- Forum: GFL SDK
- Topic: Makernotes in EXIF
- Replies: 4
- Views: 2043
Makernotes in EXIF
The XnView program, shows the EXIF data belonging to the group Makernote . However, with the function gflLoadExif not appear this values (ISO, etc).
How can I see this values EXIF?
Exif := gflLoadExif(Pchar(FileName1),0);
NItems := Exif.NumberOfItems;
for i := 0 to NItems-1 do
begin ...
How can I see this values EXIF?
Exif := gflLoadExif(Pchar(FileName1),0);
NItems := Exif.NumberOfItems;
for i := 0 to NItems-1 do
begin ...
- Sat Aug 02, 2008 2:17 pm
- Forum: GFL SDK
- Topic: Reading EXIF data
- Replies: 5
- Views: 2990
Hello, replacing the code
by that other
It works well. There seems to be an error in (TurboDelphi)
Code: Select all
EXIF := gflBitmapGetEXIF(gfl_bmp,0);
Code: Select all
Exif := gflLoadExif(Pchar(FileName),0);
Code: Select all
gflBitmapGetEXIF
- Fri Jun 27, 2008 5:53 pm
- Forum: GFL SDK
- Topic: Animated Gif
- Replies: 4
- Views: 2366
- Fri Jun 27, 2008 5:36 pm
- Forum: GFL SDK
- Topic: Animated Gif
- Replies: 4
- Views: 2366
- Wed Jun 25, 2008 10:24 am
- Forum: GFL SDK
- Topic: Animated Gif
- Replies: 4
- Views: 2366
- Wed Jun 25, 2008 7:14 am
- Forum: GFL SDK
- Topic: Animated Gif
- Replies: 4
- Views: 2366
Animated Gif
Is it possible to create animated GIF format images using gflFileCreate?
It would be necessary to specify the duration of viewing each image.
Regards...
It would be necessary to specify the duration of viewing each image.
Regards...
- Thu May 15, 2008 8:47 pm
- Forum: GFL SDK
- Topic: Reading EXIF data
- Replies: 5
- Views: 2990
Delphi
Can you tell me where is the mistake?
var
lp1b: TGFL_LOAD_PARAMS;
gfl_bmp1b: PGFL_BITMAP;
Pgfl_color1b: TGFL_COLOR;
finfo1b: TGFL_FILE_INFORMATION;
e1 : GFL_ERROR;
Exif : PGFL_EXIF_DATA;
begin
gflEnableLZW(GFL_TRUE);
gflGetDefaultLoadParams(lp1b);
lp1b.ColorModel := GFL_BGR;
lp1b ...
var
lp1b: TGFL_LOAD_PARAMS;
gfl_bmp1b: PGFL_BITMAP;
Pgfl_color1b: TGFL_COLOR;
finfo1b: TGFL_FILE_INFORMATION;
e1 : GFL_ERROR;
Exif : PGFL_EXIF_DATA;
begin
gflEnableLZW(GFL_TRUE);
gflGetDefaultLoadParams(lp1b);
lp1b.ColorModel := GFL_BGR;
lp1b ...
- Wed May 14, 2008 10:06 pm
- Forum: GFL SDK
- Topic: Reading EXIF data
- Replies: 5
- Views: 2990
- Sun Apr 06, 2008 5:07 pm
- Forum: GFL SDK
- Topic: Who uses GFLSDK?
- Replies: 19
- Views: 53111
imagen3D
imagen3D is a program that I have developed for the creation and basic edition of Anaglyph images from a couple of digital images taken from different angles.
http://personal.telefonica.terra.es/web ... /imagen3d/
http://personal.telefonica.terra.es/web ... /imagen3d/
- Sun Apr 06, 2008 4:59 pm
- Forum: GFL SDK
- Topic: Reading EXIF data
- Replies: 5
- Views: 2990
Reading EXIF data
Hello,
can you indicate me the way of obtaining and interpreting the EXIF data of an image?
I am using Turbo Delphi .
Regards...
can you indicate me the way of obtaining and interpreting the EXIF data of an image?
I am using Turbo Delphi .
Regards...
- Sat Mar 08, 2008 1:04 am
- Forum: GFL SDK
- Topic: gflAutoCrop
- Replies: 1
- Views: 1275
in libgfl.pas:
ERROR:
OK:
ERROR:
Code: Select all
function gflAutoCrop(src: PGFL_BITMAP; dst: PPGFL_BITMAP;
var color: PGFL_COLOR; tolerance: GFL_INT32): GFL_ERROR; stdcall;
Code: Select all
function gflAutoCrop(src: PGFL_BITMAP; dst: PPGFL_BITMAP;
var color: TGFL_COLOR; tolerance: GFL_INT32): GFL_ERROR; stdcall;