![]()  | 
  
Chilkat  HOME  Android™  AutoIt  C  C#  C++  Chilkat2-Python  CkPython  Classic ASP  DataFlex  Delphi DLL  Go  Java  Node.js  Objective-C  PHP Extension  Perl  PowerBuilder  PowerShell  PureBasic  Ruby  SQL Server  Swift  Tcl  Unicode C  Unicode C++  VB.NET  VBScript  Visual Basic 6.0  Visual FoxPro  Xojo Plugin
 
      (PowerBuilder) 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.) 
 integer li_rc oleobject loo_Xmp integer li_Success oleobject loo_Xml // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loo_Xmp = create oleobject // Use "Chilkat_9_5_0.Xmp" for versions of Chilkat < 10.0.0 li_rc = loo_Xmp.ConnectToNewObject("Chilkat.Xmp") if li_rc < 0 then destroy loo_Xmp MessageBox("Error","Connecting to COM object failed") return end if // Load a JPG or TIF image file. li_Success = loo_Xmp.LoadAppFile("qa_data/xmp/AJ_123642_1511.tif") if li_Success <> 1 then Write-Debug loo_Xmp.LastErrorText destroy loo_Xmp return end if Write-Debug "Num embedded XMP docs: " + string(loo_Xmp.NumEmbedded) // This example assumes that XMP metadata is already present in the image file. if loo_Xmp.NumEmbedded = 0 then Write-Debug "No XMP metadata already exists.." destroy loo_Xmp return end if // Get the XMP metadata. loo_Xml = loo_Xmp.GetEmbedded(0) // Show the XML: Write-Debug loo_Xml.GetXml() // Update (overwrite) a string property. loo_Xmp.AddSimpleStr(loo_Xml,"NumberofTimes","123") li_Success = loo_Xmp.SaveAppFile("qa_output/updated.tif") if li_Success <> 1 then Write-Debug loo_Xmp.LastErrorText destroy loo_Xmp return end if Write-Debug "Success." destroy loo_Xmp  | 
  ||||
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.