Visual Basic & EXIF / IPTC [fr]

Discussions on GFL SDK, the graphic library for reading and writing graphic files

Moderators: helmut, XnTriq, xnview

Post Reply
JMC

Visual Basic & EXIF / IPTC [fr]

Post 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
User avatar
xnview
Author of XnView
Posts: 46235
Joined: Mon Oct 13, 2003 7:31 am
Location: France
Contact:

Re: Visual Basic & EXIF / IPTC [fr]

Post 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
Pierre.
Guest

Re: Visual Basic & EXIF / IPTC [fr]

Post 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
JMC

Re: Visual Basic & EXIF / IPTC [fr]

Post 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 :D
Mais comment ça marche ????

JMC
User avatar
xnview
Author of XnView
Posts: 46235
Joined: Mon Oct 13, 2003 7:31 am
Location: France
Contact:

Re: Visual Basic & EXIF / IPTC [fr]

Post 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 :D
Mais comment ça marche ????
En fait il faudrait ajouter au wrapper VB toutes les fonctions qui manquent pour le support IPTC/EXIF
Pierre.
JMC

Re: Visual Basic & EXIF / IPTC [fr]

Post 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 :(
User avatar
xnview
Author of XnView
Posts: 46235
Joined: Mon Oct 13, 2003 7:31 am
Location: France
Contact:

Re: Visual Basic & EXIF / IPTC [fr]

Post 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?
Pierre.
Guest

Re: Visual Basic & EXIF / IPTC [fr]

Post by Guest »

xnview wrote: Do you have GFL_LOAD_METADATA in load_params.Flags?
It works far better :D
I'll continue ... after hollidays !


JMC
Post Reply