Questions tagged [xmp]

The Adobe Extensible Metadata Platform (XMP) is a standard, created by Adobe Systems Inc., for processing and storing standardized and proprietary information relating to the contents of a file.

The Adobe Extensible Metadata Platform (XMP) is a standard, created by Adobe Systems Inc., for processing and storing standardized and proprietary information relating to the contents of a file. it is a labeling technology that allows you to embed data about a file, known as metadata, into the file itself. Adobe provides XMP Toolkit(http://www.adobe.com/devnet/xmp.html) that is available under the BSD license. The XMP Toolkit allows you to integrate XMP functionality into your product or solution. It supports Macintosh, iOS, Windows, as well as UNIX and comes with samples, documentation, source code and scripts to generate project files.

One of the most useful tools that can handle XMP reading and writing in a variery of formats is EXIF Tool.

248 questions
1
vote
0 answers

Updating image xmp data via xmp-core-dotnet

I'm searching for a way in C# to not only extract XMP data from e.g. an image but also change/ update values and store everything. Right now I have two major problems: registering new namespaces storing everything back to the image I'm using both…
Vegetico
  • 93
  • 8
1
vote
1 answer

Marshaling C++ void* parameters

I'm trying to marshall Adobe XMPToolKitSDK XMPFiles.dll and XMPCore.dll. This is the first time I do such a thing and things seems to be working fine for methods that do not contain a parameter of type "void *". Please help me with the code below.…
1
vote
1 answer

How to replace a specific image within a pdf?

I have a pdf with 3 images I want to find each image and replace it with another image I saw in the pdf the original paths under xmpMM:Ingredients: I tried to change it via notepad++ but it looks like the images are already embedded and changing…
coral
  • 181
  • 1
  • 1
  • 12
1
vote
3 answers

php support for WEBP image metadata

Does php support webp image metadata? Specifically, I want to be able to read and write XMP and EXIF metadata for webp images natively in php code. I have been experimenting with the below code and it is giving me a "File not supported in"…
1
vote
2 answers

Get PDF XMP Metadata without loading the complete document

With libraries like iTextSharp or iText you can extract metadata from PDF documents via a PdfReader: using (var reader = new PdfReader(pdfBytes)) { return reader.Metadata == null ? null : Encoding.UTF8.GetString(reader.Metadata); } These kind…
Michel van Engelen
  • 2,791
  • 2
  • 29
  • 45
1
vote
1 answer

Error installing Exempi 2.5.2 on M1 Macbook Pro running Big Sur

I'm trying to install Exempi 2.5.2 in PyCharm IDE for python in order to read Metadata from a Photoshop psd file. My code is: import PIL from libxmp.utils import file_to_dict from libxmp import consts from psd_tools import PSDImage if __name__ ==…
dromalpalli
  • 117
  • 2
  • 10
1
vote
1 answer

Resize image with Python and keep EXIF and XMP metadata

Its been asked a lot of times how to resize an image and keep the existing exif data. I'm able to do that easily with PIL: from PIL import Image im = Image.open("image.jpeg") exif = im.info['exif'] # process the image, for example…
Dusan
  • 3,284
  • 6
  • 25
  • 46
1
vote
0 answers

How to apply lrtemplates, DNG, XMP to images using python?

As I researched, popular images presets are lrtemplates, dng, xmp. However, we can only apply those filters by professional softwares like Photoshop, Lightroom, etc. Is it possible to do it by code (especially Python)? The idea is to develop a…
1
vote
1 answer

C#: Metadata-Extractor cannot read the XMP created from Aspose Imaging

I'm planning to use these XMP Metadata property handlers to store my encryption keys in order for my programs to read it (for security purposes). I've done some on PDF Files and now I'm trying to add an encryption key support for Images and MS Word…
Kagetsuchi
  • 35
  • 6
1
vote
1 answer

implementing xmp data or dng data on other images in mobile app

I'm trying to build a mobile app (react-native or native languages) that will be able to take xmp file (in other words is presets of photos) and implement its data on other photo, or implementing dng settings on another photo. What I'm trying to…
1
vote
1 answer

What is the difference between "location" and "location-eng" metadata of a MP4 file?

I am trying to retrieve GPS information from media files using ffprobe, for example: $ ffprobe -v quiet -show_format sample.mp4 [FORMAT] filename=sample.mp4 nb_streams=2 nb_programs=0 format_name=mov,mp4,m4a,3gp,3g2,mj2 format_long_name=QuickTime /…
Weihang Jian
  • 7,826
  • 4
  • 44
  • 55
1
vote
0 answers

Not able to read InDesign XMP File through ExtendScript and write in external xml

I am using InDesign 2020/2021, on my Windows 10. When I am trying to get XMP data for my .indd (InDesign document) using ExtendScript, The below line gives an error on the Adobe Extenscript toolkit xmpFile = new XMPFile(myFile.fsName,…
thebadguy
  • 2,092
  • 1
  • 22
  • 31
1
vote
1 answer

How can I write XMP metadata to a QuickTime video on iOS?

I’m trying to attach some XMP metadata to a QuickTime video I'm exporting using AVAssetExportSession. AVFoundation does support writing metadata (AVMetadataItem) and I’ve managed to export simple values which can subsequently be examined using…
Dan
  • 81
  • 6
1
vote
2 answers

Write Face Tags to XMP files (not embedded) as well as XMP metadata embedded in JPG

I have Face Tags data (Name of persons and X/Y and size of each boxes for each image) in my database. I want to update the corresponding JPEG or XMP files with this information. I'm aware about ExifTool but I dont see how to create this kind of list…
user2164703
  • 199
  • 1
  • 11
1
vote
0 answers

Extracting XMPMetadata with Tika

I'm using Tika to extract Metadata from many types (images, video, etc...) using the AutoDetectParser. It works quite well and returns some metadata in a fully qualified naming style "tiff:XResolution" (xmp). But if I compare a Metadata extraction…