Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(DataFlex) Update a String Property in XMPDemonstrates how to open a JPG or TIF image file, access the XMP metadata, and update the value of a string property. (If the string property does not already exist, it is created.)
Use ChilkatAx-win32.pkg Procedure Test Handle hoXmp Boolean iSuccess Variant vXml Handle hoXml String sTemp1 Integer iTemp1 // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. Get Create (RefClass(cComChilkatXmp)) To hoXmp If (Not(IsComObjectCreated(hoXmp))) Begin Send CreateComObject of hoXmp End // Load a JPG or TIF image file. Get ComLoadAppFile Of hoXmp "qa_data/xmp/AJ_123642_1511.tif" To iSuccess If (iSuccess <> True) Begin Get ComLastErrorText Of hoXmp To sTemp1 Showln sTemp1 Procedure_Return End Get ComNumEmbedded Of hoXmp To iTemp1 Showln "Num embedded XMP docs: " iTemp1 // This example assumes that XMP metadata is already present in the image file. Get ComNumEmbedded Of hoXmp To iTemp1 If (iTemp1 = 0) Begin Showln "No XMP metadata already exists.." Procedure_Return End // Get the XMP metadata. Get ComGetEmbedded Of hoXmp 0 To vXml If (IsComObject(vXml)) Begin Get Create (RefClass(cComChilkatXml)) To hoXml Set pvComObject Of hoXml To vXml End // Show the XML: Get ComGetXml Of hoXml To sTemp1 Showln sTemp1 // Update (overwrite) a string property. Get ComAddSimpleStr Of hoXmp vXml "NumberofTimes" "123" To iSuccess Get ComSaveAppFile Of hoXmp "qa_output/updated.tif" To iSuccess If (iSuccess <> True) Begin Get ComLastErrorText Of hoXmp To sTemp1 Showln sTemp1 Procedure_Return End Showln "Success." End_Procedure |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.