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
5
votes
4 answers

Is there any Python3 compatible module to read/write IPTC-data?

I've already tried IPTCInfo3. But after successful installation with pip3 install IPTCInfo i get an import error: Python 3.5.2 (default, Oct 11 2016, 04:59:56) [GCC 4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.38)] on darwin from iptcinfo…
user7141836
5
votes
3 answers

Get iptc metadata of jpg image in php

I'm trying to get some iptc metadata from jpg image (http://pepeliana.com/images/DSC4008.jpg) with php. The Title metadata of the referenced image is set to "Testing". I've went through the php manual and both functions that seemed to do the job -…
silverchair
  • 920
  • 2
  • 9
  • 18
5
votes
1 answer

How to copy the IPTC data from one image to another?

I'm developing an image processor script to basically resize images. The problem is that when I make the resized copy of the image, it doesn't copy the IPTC data as well. So I've been checking the IPTC PHP functions (iptcparse and iptcembed) but I'm…
fedejp
  • 958
  • 3
  • 12
  • 20
4
votes
6 answers

Reading IPTC information with C#, .NET Framework 2

is there any possibility to read the IPTC information of a picture with C# and the .NET Framework 2? I haven't found any solution. Only with .NET Framework 3.0 oder .NET 3.5 you can do it. Any help, any information? Thank you very much from…
Stephan
4
votes
1 answer

Writing exif and itpc data in PHP

I'm trying to make a image upload system to add meta-data to the files themselves. I'm using the iptcembed from the GD library as shown below:
lovinxlost
  • 211
  • 1
  • 3
  • 5
4
votes
3 answers

Python: Disable iptcinfo warning

I am using the iptcinfo Python module to get metadata from a picture but it is throwing at me a lot of (useless) warnings of this type: ('WARNING: problems with charset recognition', "'\x1b'") What does it mean and how can I remove these warnings…
Sulli
  • 763
  • 1
  • 11
  • 33
4
votes
2 answers

Is it possible to add IPTC data to a JPG using python when no such data already exists?

With the IPTCInfo module under Python (http://snippets.dzone.com/posts/show/768 for more info) it's possible to read, modify and write IPTC info to pictures. However, if a JPG doesn't already have IPTC information, the module simply raises an…
ventolin
  • 2,971
  • 3
  • 21
  • 25
4
votes
2 answers

Editing/adding IPTC metadata in Android app

I have looked at many of the other similar questions but none of them seem to have a precise answer. I'm working on an Android app that works with a lot of images. I am looking to add information to images by editing the value of their IPTC keyword…
s16h
  • 4,647
  • 1
  • 21
  • 33
3
votes
4 answers

generating thumbnails using CF8 cfimage tag - large filesize caused by image metadata

i'm building a small web app that will resize images to different pixel dimensions after they have been uploaded. I am attempting to create 150px X 100px thumbnail from a 3mb jpg image, but am unable to get the filesize smaller than 68kb ( I would…
Mark
  • 31
  • 2
3
votes
0 answers

How to write or update IPTC metadata in photos via the iOS SDK?

I am trying to add IPTC metadata to images using the iOS SDK and am unable to get it to work. No matter what I try, the dictionary with the IPTC metadata does not end up getting stored in the image saved to the photo library. This applies both to…
Chris Markle
  • 2,076
  • 4
  • 25
  • 46
3
votes
2 answers

How to append keywords to IPTC data in a JPG image?

I'm trying to add keywords to the IPTC data in a JPG file and failing miserably. I'm able to read in the keywords using the iptcinfo3 library and, seemingly, append the keyword to the list of current keywords but I'm failing when trying to write…
Scott
  • 31
  • 1
  • 4
3
votes
1 answer

Please recommend a Node module for writing IPTC data to images?

I have a Node.js server whose job it is to download JPEG images, write certain data to a couple of IPTC fields (e.g. Iptc.Application2.Caption) and pass the image on to another service. Ideally, I'd like to write the IPTC data to the in-memory…
thomax
  • 9,213
  • 3
  • 49
  • 68
3
votes
0 answers

How to get IPTC value above 65 characters limit?

I want to retrieve more than 65 characters of the IPTC 2#005 value of a JPG image. But when I use the classic : $size = getimagesize($photo, $info); if(isset($info['APP13'])) { $iptc = iptcparse($info['APP13']); return $iptc; } The phrase…
Alex
  • 31
  • 1
3
votes
3 answers

Bash Script that exports Apple Tags (Mavericks Tags) to IPTC "Keywords" metadata (using 'Tag' and 'ExifTool')

My Final Solution: Save the following script (modified from damienfrancois answer) to a file such as "photos.sh". IFS=$'\n'; for file in $(find ./ -name '*.jpg' -or -name '*.JPG' -or -name '*.tif' -or -name '*.JPEG'); # iterate over each file do …
Bruce Atkinson
  • 93
  • 1
  • 10
3
votes
2 answers

Write IPTC data to file

I would need to take an existing jpg file and modify the title, the description and the keywords in its IPTC entries. There are several topics here on this but all either without answer or with partial answers. I already know how to read the IPTC…
user2452250
  • 777
  • 2
  • 11
  • 26