Questions tagged [iptc]

IPTC Information Interchange Model

IPTC is information that is embedded into images.

From Wikipedia

IIM attributes are widely used and supported by many image creation and manipulation programs. Almost all the IIM attributes are supported by the Exchangeable image file format (Exif), a specification for the image file format used by digital cameras.

Also see:

118 questions
0
votes
2 answers

Extract Job Identifier / TransmissionReference from image in C#

I need to extract some metadata for a system. I already have the following code, which is working for all others metadata attributes I need to access. using (Stream stream = new FileStream(imagePhysicalPath, FileMode.Open, FileAccess.Read,…
Justin Lessard
  • 10,804
  • 5
  • 49
  • 61
0
votes
2 answers

Extract IPTC using ImageMagick without Entities but UTF-8

I have an image containing ITPC data and use the following command to extract the IPTC as textual data: convert image.jpg IPTCTEXT:iptc.txt The problem is that this seems to be using entities for "special characters": 2#120#Caption="Beschreibung…
Werzi2001
  • 2,035
  • 1
  • 18
  • 41
0
votes
1 answer

Jpeg metadata for adobe format

I downloaded xnview two years ago, and added title/subject/keywords metadata for a bunch of jpegs. However recently I compared the keywords from xnview and adobe bridge. I realize that they are different. I believe the title/subject is not the same.…
Arun
  • 1,599
  • 5
  • 19
  • 33
0
votes
1 answer

"unable to parse" IPTC Date to XMP DateTime in exiv2

I am hacking a bit on exiv2, trying to extend it's date/time conversion functions between EXIF, IPTC, and XMP. http://dev.exiv2.org/issues/864 IPTC Date and IPTC Time are stored in separate fields, so first I try to parse IPTC Date, later in my…
asp
  • 139
  • 6
0
votes
2 answers

How do I use IPTC/EXIF metadata to categorise photos?

Many photo viewing and editing applications allow you to examine and change EXIF and IPTC data in JPEG and other image files. For example, I can see things like shutter speed, aperture and orientation in the picture files that come off my Canon…
kbro
  • 4,754
  • 7
  • 29
  • 40
0
votes
2 answers

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 permanent. What I want to do is remove the compressed…
Carlo Mendoza
  • 765
  • 6
  • 24
0
votes
1 answer

Any idea to extend my C code to set TOS values in IPv6 packets using IPTC library

I have the following C code to add the firewall rules ip6tables -A OUTPUT -t filter -s 2001:db8:222:2::/64 -j DROP C code: struct ip6tc_handle *h; const ip6t_chainlabel chain = "OUTPUT"; const char *tablename = "filter"; struct…
Ibra
  • 53
  • 6
0
votes
1 answer

Java - Read Illustrator file IPTC metadata

Path file = Paths.get(file.getAbsolutePath()); BasicFileAttributes attr = Files.readAttributes(file, BasicFileAttributes.class); System.out.println("creationTime: " + attr.creationTime()); System.out.println("lastAccessTime: " +…
chinna_82
  • 6,353
  • 17
  • 79
  • 134
0
votes
1 answer

How to decode a messed up UTF-8 string properly?

I'm trying to read IPTC data using python and pyexiv2. import pyexiv2 image = pyexiv2.Image('test.jpg') image.readMetadata() print image['Iptc.Application2.Caption'] That gives me thefollwing: Copyright: Michael Huebner, Kontakt:…
JasonTS
  • 2,479
  • 4
  • 32
  • 48
0
votes
1 answer

Write ITPC metadata into image

I have to modify the iptc metadata of 6000+ jpg images. Unfortunately, I didn't found any library or even an example for doing so. Could you please give me a hint how to modify the metadata of images or point me to a site where I can inform myself?
Christopher
  • 2,005
  • 3
  • 24
  • 50
0
votes
2 answers

making IPTC data searchable

I have a question about IPTC metadata. Is it possible to search images that aren't in a database by their IPTC metadata (keywords) and show them and how would I go about doing this? I just need a basic idea. I know there is the iptcparse() function…
bobby
0
votes
1 answer

Write an array of values in the "IPTC" Image

I'm doing a class to handle the "IPTC" image and need to write some values to array as show in the example below; [2#020] => Array //SUPPLEMENTAL_CATEGORY ( [0] => SPORT [1] => REAL MADRID ) [2#025] => Array //KEYWORDS …
Agutoli
  • 63
  • 1
  • 8
-1
votes
1 answer

I like to get IPTC's Title or Description character count

I like to get IPTC's Title or Description character count and get files over 195 character count somehow marked - In Adobe Bridge either sort, or label, or rate them (with a script or a plugin) - In Lightroom somehow - In any other tool with E.g.…
SupWP
  • 17
  • 6
1 2 3 4 5 6 7
8