Page 1 of 1
Visual Basic & EXIF / IPTC [fr]
Posted: Tue Jul 05, 2005 4:53 pm
by JMC
Bonjour,
Comment, sous Visual Basic 6, peut-on accéder aux informations EXIF / IPTC ?
On parle bien dans l'aide de fonction "gflBitmapHasEXIF" ou "gflBitmapGetIPTC", mais elles n'apparaissent pas dans les déclarations ".bas". Et aucun exemple n'utilise ces fonction ...
Comment fait-on ?
Quelqu'un a-t-il un piste ?
JMC
Re: Visual Basic & EXIF / IPTC [fr]
Posted: Wed Jul 06, 2005 12:15 pm
by xnview
JMC wrote:Comment, sous Visual Basic 6, peut-on accéder aux informations EXIF / IPTC ?
On parle bien dans l'aide de fonction "gflBitmapHasEXIF" ou "gflBitmapGetIPTC", mais elles n'apparaissent pas dans les déclarations ".bas". Et aucun exemple n'utilise ces fonction ...
Comment fait-on ?
Quelqu'un a-t-il un piste ?
Pour le moment le wrapper VB ne permet pas l'utilisation IPTC/EXIF
Re: Visual Basic & EXIF / IPTC [fr]
Posted: Wed Jul 06, 2005 3:55 pm
by Guest
Pour le moment le wrapper VB ne permet pas l'utilisation IPTC/EXIF
Est-ce prévu ?
Y a-t-il besoin d'un coup de main ?
JMC
Re: Visual Basic & EXIF / IPTC [fr]
Posted: Fri Jul 08, 2005 8:43 am
by JMC
xnview wrote:
Pour le moment le wrapper VB ne permet pas l'utilisation IPTC/EXIF
Super la version 2.40, c'eest visiblement résolu
Mais comment ça marche ????
JMC
Re: Visual Basic & EXIF / IPTC [fr]
Posted: Sat Jul 09, 2005 12:17 pm
by xnview
JMC wrote:xnview wrote:
Pour le moment le wrapper VB ne permet pas l'utilisation IPTC/EXIF
Super la version 2.40, c'eest visiblement résolu
Mais comment ça marche ????
En fait il faudrait ajouter au wrapper VB toutes les fonctions qui manquent pour le support IPTC/EXIF
Re: Visual Basic & EXIF / IPTC [fr]
Posted: Mon Jul 11, 2005 3:40 pm
by JMC
xnview wrote:
En fait il faudrait ajouter au wrapper VB toutes les fonctions qui manquent pour le support IPTC/EXIF
C'est bien ce que j'ai déjà essayé, avec un petit test :
Code: Select all
Public Declare Function gflBitmapHasEXIF Lib "libgfl240.dll" (ByRef src As GFL_BITMAP) As Byte
Public Declare Function gflBitmapGetEXIF Lib "libgfl240.dll" (ByRef src As GFL_BITMAP) As Byte
...
MsgBox "gflBitmapHasEXIF = " & gflBitmapHasEXIF(GflBitmap)
MsgBox "gflBitmapHasIPTC = " & gflBitmapHasIPTC(GflBitmap)
Mais j'ai toujours 0 comme réponse

Re: Visual Basic & EXIF / IPTC [fr]
Posted: Tue Jul 12, 2005 11:48 am
by xnview
JMC wrote:xnview wrote:
En fait il faudrait ajouter au wrapper VB toutes les fonctions qui manquent pour le support IPTC/EXIF
C'est bien ce que j'ai déjà essayé, avec un petit test :
Code: Select all
Public Declare Function gflBitmapHasEXIF Lib "libgfl240.dll" (ByRef src As GFL_BITMAP) As Byte
Public Declare Function gflBitmapGetEXIF Lib "libgfl240.dll" (ByRef src As GFL_BITMAP) As Byte
...
MsgBox "gflBitmapHasEXIF = " & gflBitmapHasEXIF(GflBitmap)
MsgBox "gflBitmapHasIPTC = " & gflBitmapHasIPTC(GflBitmap)
Mais j'ai toujours 0 comme réponse

Do you have GFL_LOAD_METADATA in load_params.Flags?
Re: Visual Basic & EXIF / IPTC [fr]
Posted: Wed Jul 13, 2005 2:06 pm
by Guest
xnview wrote:
Do you have GFL_LOAD_METADATA in load_params.Flags?
It works far better
I'll continue ... after hollidays !
JMC