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
20
votes
9 answers

Read image XMP data in Python

Can I use PIL, like in this example? I only need to read the data, and I'm looking for the easiest simplest way to do it (I can't install pyexiv). edit: I don't want to believe that the only way to do this is with some library (python-xmp-toolkit,…
dolma33
  • 4,133
  • 6
  • 28
  • 48
20
votes
6 answers

Reading data metadata from JPEG, XMP or EXIF in C#

I've been looking around for a decent way of reading metadata (specifically, the date taken) from JPEG files in C#, and am coming up a little short. Existing information, as far as I can see, shows code like the following; BitmapMetadata bmd =…
tsvallender
  • 2,615
  • 6
  • 32
  • 42
16
votes
10 answers

How can I read XMP data from a JPG with PHP?

PHP has built in support for reading EXIF and IPTC metadata, but I can't find any way to read XMP?
Liam
  • 19,819
  • 24
  • 83
  • 123
13
votes
1 answer

asp.net - image keywords missing after uploading image to server

I'm uploading image to server and then processing the image. Funny thing is, after uploading the image image keywords are missing. Although other image properties are there. There is no issue with parsing the tags, so please ignore below code…
Abdul Ahad
  • 2,187
  • 4
  • 24
  • 39
12
votes
5 answers

Is it possible to add custom metadata to file?

I know that each file has metadata like title, subject, keywords and comments: But what if I need custom metadata like tags for example? Is it possible to do it with C#?
Sasha
  • 20,424
  • 9
  • 40
  • 57
9
votes
2 answers

Read/Modify PDF Metadata using iTextSharp

I am trying to use iTextSharp to read/modify PDF metadata. I figured out how to do it using pdfreader and pdfstamper. I was wondering if I could also read/modify additional metadata information like copyright information and few others within the…
muruge
  • 4,083
  • 3
  • 38
  • 45
9
votes
2 answers

Exiftool to create OSX visible XMP metadata in PNG images

Around my image processing software I use exiftool to successfully shuffle around exif info from Cr2, TIFF, JPG files. The added tags, such as "keywords", are all visible in OSX (mountain lion) Finder, Preview and nicely indexed by Spotlight. For…
gdh
  • 498
  • 3
  • 14
8
votes
3 answers

Which to use, XMP or RDF?

What's the difference between RDF and XMP? From what I can tell, XMP is derived from RDF... so what does it offer that RDF doesn't? My particular situation is this: I've got some images which need tagging with details of how an experiment was…
zotty
  • 797
  • 2
  • 9
  • 27
8
votes
1 answer

Face tagging information and photo metadata

Is there a standard way to read/write face-tags from/into photo meta-data? Can I use it to import face-tagging information from popular photo organizers?
Yoav
  • 5,962
  • 5
  • 39
  • 61
7
votes
1 answer

asmack - receiving custom XML messages ||

I've spend some time to add smack.providers in the android device, which is picked up by my application just fine. I've added the default iqProviders and extensionProviders, but I've also added my custom extensionProvider, which is the…
eleanor
  • 1,514
  • 3
  • 19
  • 40
7
votes
0 answers

Add xmp extension schema with itext to be PDF/A compliant

I am looking for a working iText version 5.5.4 example to add a custom metadata value myProp with content like My metadata to a PDF document. We can't use existing schemas like DC for this case. Thanks in advance.
Siegi82AT
  • 123
  • 7
7
votes
3 answers

Reading JPG file's XMP metadata

I am developing Android application that's supposed to make use of Google Camera's new depth map generation feature. Basically Google has described the meta data used here I can access to most of the metadata, but unfortunately the most important…
Ruuhkis
  • 1,924
  • 1
  • 27
  • 46
6
votes
1 answer

reading/writing xmp metadatas on pdf files through pypdf

I can read xmp metadatas through pypdf with this code: from pypdf import PdfReader a = PdfReader("file.pdf") b = a.xmp_metadata c = b.pdf_keywords But is this the best way? And if I don't use the pdf_keywords property? Is there any way to set…
JuanDeLosMuertos
  • 4,532
  • 15
  • 55
  • 87
6
votes
2 answers

Audio/video file formats that support embedded markers and comments/annotations?

I am looking at creating an app for OS X and/or iOS that allows the user to arbitrarily embed markers into the audio at various intervals during the audio recording process. It would be nice to have a single file that could contain this…
Eric
  • 3,865
  • 4
  • 32
  • 44
6
votes
1 answer

Itext create XMP in pdf with Java

I need to create in java (using itext) the following xmp metadata and to put it in one of my pdf.
Giamma
  • 808
  • 2
  • 10
  • 21
1
2 3
16 17