Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Accessing IPTC EXIF meta
Message
 
À
27/09/2013 03:06:56
Denis Filer
University of Oxford
Royaume Uni
Information générale
Forum:
Visual FoxPro
Catégorie:
Photos et traitement d'images
Versions des environnements
Visual FoxPro:
VFP 9 SP2
OS:
Windows Server 2012
Network:
Windows 2008 Server
Database:
MS SQL Server
Application:
Web
Divers
Thread ID:
01584305
Message ID:
01584313
Vues:
54
>Is there a well trodden way to get at image IPTC and/or EXIF metadata? I've tried using .GetDetailsOf which is partly successful.
>Thank you in advance, Denis
Clear
IPTC(Addbs(Sys(5)+Sys(2003))+"IMG_4570.JPG")
Procedure IPTC
Lparameters tcPicFullPath

oShell = Createobject("Shell.Application")
oFolder = oShell.Namespace(Justpath(tcPicFullPath))

With oFolder

	For Each cFile In oFolder.Items
		If Upper(cFile.Name) <> Upper(Justfname(tcPicFullPath))
			Loop
		Endif

		For i = 0 To 47
			?.GetDetailsOf(oFolder.Items, i) + ": " + ;
				.GetDetailsOf(cFile, i)
		Endfor
	Endfor
Endwith
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform