Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
259 views

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 ...
4
votes
1answer
124 views

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 ...
4
votes
3answers
401 views

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 ...
3
votes
2answers
842 views

Reading “People Tags” inserted by Windows Live Photo Gallery

Photo Gallery gives you the ability to mark a person's face and apply a tag to it. I understand it inserts tags directly into the file rather than store it off in a database or accompanying metafile ...
3
votes
1answer
877 views

reading/writing xmp metadatas on pdf files through pypdf

I can read xmp metadatas through pyPdf with this code: a = pyPdf.PdfFileReader(open(self.fileName)) b = a.getXmpMetadata() c = b.pdf_keywords but: is this the best way? And ...
2
votes
1answer
168 views

Out of memory exception when extracting xmp metadata from picture

I have a problem like mentioned above when extracting metadata from tif file. It has size over 450 MB. I was extracting using http://commons.apache.org/sanselan/ library in newest version(0.97). When ...
2
votes
2answers
5k views

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 ...
2
votes
2answers
697 views

Parsing SOAP response using libxml in Ruby

I am trying to parse following SOAP response coming from Savon SOAP api <?xml version='1.0' encoding='UTF-8'?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> ...
2
votes
2answers
777 views

How to convert BitmapMetadata keys to corresponding XMP names?

I am writing an open-source library to extract image metadata and store as XMP serialized in an XML sidecar (ideally identically to how Adobe's apps serialize their metadata). My problem is it ...
2
votes
5answers
469 views

Checksum JPEG data (not the whole file)

Are there end-of-exif / end-of-xmp / end-of-iptc / start-of-data markers that I could use to get a checksum of just the data part of a jpg / jpeg (and other image formats)?
2
votes
4answers
3k views

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?
1
vote
0answers
52 views

Displaying all XMP tags

I am trying to get all The XMP data from a Image, with the XMP Library from Adobe. I will actually like to retrieve the information of the image, so i believe i have to retrieve data from the name ...
1
vote
0answers
96 views

Where can I get a practical tutorial with examples of XMP sidecar files?

I need some examples of XMP sidecar files and also some info on how to fill them out. I'm making an application where the metadata is generic and can come from IPTC or XMP. It's stored in a database ...
1
vote
3answers
111 views

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 ...
1
vote
1answer
87 views

what does “XMP over SOAP protocol” mean?

what is the meaning of the following line ? "The interfaces are built using XMP over SOAP protocol" ....the interfaces referes to webservices.
1
vote
1answer
384 views

Reading/Writing image XMP on iPhone / Objective-c

I'm trying to read XMP information from a jpeg on iPhone. I can get tags from IPTC, TIFF or EXIF easily using ImageIO but not XMP. I'm specially interested the rating tag. Does anyone know how to do ...
1
vote
0answers
179 views

complete xmp/iptc manipulation command line tool or python wrapper? (osx)

im searching for a complete command line tool or even better a python wrapper to manipulate and retrieve image metadata. i tried pyexiv2 which is very nice but i cant register a new namespace like ...
1
vote
2answers
220 views

Inserting/Updating XMP in a PDF?

How can I insert/update some XMP metadata into a PDF file preferably using java ?
1
vote
0answers
161 views

Extracting XMP metadata from EPS files

I am trying to implement a module in either C# or classic ASP, which extracts the XMP data from a EPS file. Is there a framework or component (not necesarilly free) which can help me to create this ...
1
vote
1answer
461 views

Compass metadata tag in photos

We have a GPS enable camera that also stores the compass direction or bearing in the metadata in the photo. The GPS X and Y and other GPS information is stored in the GPSInfo tag in the EXIF data, ...
1
vote
4answers
4k views

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 ...
1
vote
1answer
108 views

How can i use XMP to modify metadata of Sharepoint Document?

I am trying to Modify Meta data of Sharepoint Document. How can use XMP for this task? Using C#. Can anyone give me some code samples?
1
vote
0answers
136 views

How can i use XMP in Sharepoint metadata?

I want to update metadata of Sharepoint List or site programatically using Web Services. How can XMP help me in it? Or is there any use of it?
1
vote
1answer
257 views

Good metadata image dump utilities?

I'm looking for the best tool out there to extract any and all metadata embedded within the most populat image file formats (JPEG and PNG specifically). whatever's in there, I'd like to know about it ...
1
vote
1answer
317 views

Library for writing XMP to a multipage TIFF

Can you recommend a library that lets me add XMP data to a TIFF file? Preferably a library that can be used with Java Cheers Nik
1
vote
3answers
1k views

Modifying XMP data with C#

I'm using C# in ASP.NET version 2. I'm trying to open an image file, read (and change) the XMP header, and close it back up again. I can't upgrade ASP, so WIC is out, and I just can't figure out how ...
1
vote
3answers
951 views

XMP image tagging and Python

If I were to tag a bunch of images via XMP, in Python, what would be the best way? I've used Perl's Image::ExifTool and I am very much used to its reliability. I mean the thing never bricked on tens ...
1
vote
1answer
464 views

XMP library for ruby

Could any one recommended an open source library that allows me add XMP metadata to JPEG images? Thanks.
0
votes
0answers
14 views

How to programatically extract XMP Tags added by WLPG?

I tried both exif.py (in Pyhton) and ExifTool (just for debugging on command-line). No matter what I do, I'm unable to extract image Tags or Rating added to a JPEG by Windows Live Photo Gallery. I ...
0
votes
0answers
10 views

Does embedding RDFS in XMP causes parsing errors?

I want to embed a simple RDFs hierarchy in an XMP packet. Is this possible or would the RDFs cause an error in XMP parsers?
0
votes
1answer
63 views

Add a link inside a div window

How can I add a link inside a "popup" window. When I use href it makes the entire div dissapear. Here is the code. Thanks. <div class="listing" style="display:none" id="open_window2_codediv"> ...
0
votes
0answers
24 views

Adobe XMP FileInfo SDK

Anyone tried Adobe's Extensible Metadata Platform (XMP) SDK? Is this only able to used in current Adobe Programs and the sample panel cant be used in Applications that we are building from Flash ...
0
votes
2answers
53 views

Working Example for as3-xmp library

I tried using the AS3-XMP Library to read metadata of the files, but i have no idea what methods to use. Anyway one has any working example? so that i could learn from it? i manage to read all the ...
0
votes
1answer
76 views

custom schema to XMP metadata

I want to write custom metadata to a pdf file which are not supported by XMP standard schemas hence I wrote my own schema containing my own properties. I can successfully write these additional custom ...
0
votes
0answers
59 views

Uncompress ZLIB compress xmp packet

I have a situation where I am reading an Xmp packet from Adobe into my C# project. This returns me zlib-compressed XMP Packet having Base64 Binary type. Is there a way to uncompress it and get string ...
0
votes
1answer
275 views

Fuse-Python: Unable to run example

I'm tinkering around with the fuse-python bindings and I can't seem to grasp how to run the example xmp.py from the library package (xmp.py is located here: ...
0
votes
0answers
125 views

Zend_Pdf problem extracting metadata from PDF/XMP file

I have successfully created a PDF from a multi-page .tiff file using Zend Framework, Zend_Pdf, but cannot access the XMP/metadata. Here is my code: //Create the PDF from .tiff file ...
0
votes
2answers
227 views

xml parsing-problem in actionscript3.0

I got a problem in parsing the following xml: <x:xmpmeta x:xmptk="Adobe XMP Core 5.0.0-ac001" xmlns:x="adobe:ns:meta/"> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> ...
0
votes
1answer
293 views

using XMPCore to get metadata of a file through actionscript

Is there a simple example to read/write metadata of e.g. a local .jpg? XMPCore ActionScript Reference Unfortunately I was not able to apply the instructions from adobe. A simple example will help me ...
0
votes
0answers
26 views

Extensible external metadata standards?

Are there any standard or popular methods of storing external metadata for many generic purposes? I've heard of XMP but how popular is it besides embedded in JPEG images? I'm looking for a format I ...
0
votes
1answer
114 views

ASP print xml formatted string

I have: tXML = "<type p_type=\"All\"/>"; if I do Response.Write(tXML); I get a blank space. Is there anyway to output this string so I know it is being created?
0
votes
1answer
300 views

C#: Take Out Image Portion of JPEG to Backup Metadata?

This will be a little backwards from the typical approach. I've used ExifTool for metadata manipulation before, but I really want to keep the best metadata backup I can before I make anything ...
0
votes
2answers
448 views

Correct way of parsing XMP XML metadata attached to the end of a PDF file?

I have a PDF with some meta data in XMP XML format attached to the end. What is the correct way of parsing and using this meta data? At the minute i have a working solution using C99, parsing each ...
0
votes
1answer
698 views

Read XMP from existing PDF with iTextSharp

How can I read XMP from an existing PDF file using iTextSharp?
0
votes
5answers
2k views

<XMP> Tag

Does anyone remember the XMP tag? What was it used for and why was it depreciated?
-2
votes
2answers
72 views

Why was the xmp HTML tag deprecated? [closed]

Possible Duplicate: <XMP> Tag I know that it is deprecated of course, and I know how to work around it by using the <pre> tag, <code> tag, and escapes for <>. My ...