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

Ruby gem for extracting IPTC data from JPEG

I'm looking for a gem to use with Rails 3 to extract some basic IPTC metadata from jpeg files (title, caption, ...). I have found ruby-iptc but I have no clue of how to use it having found no documentation or examples. Help anybody?
3
votes
2 answers

UTF-8 characters not displaying properly from JPEG IPTC data in PHP

When reading the IPTC data from an image, UTF-8 accented characters are not displaying properly when reading them via PHP. For example: é, ø and ü With a header content-type set as UTF8, instead of the character, I get the question mark in a black…
Ben
  • 67
  • 3
  • 7
3
votes
1 answer

Grab description/keywords from a Tiff image?

I have a number of TIFF files which contain descriptions and "keywords" (as OS X terms them in the file inspector). I'm having difficulty collecting this metadata from the images, however. I've tried using tifffile.py, PIL's exif commands and…
Phillip B Oldham
  • 18,807
  • 20
  • 94
  • 134
2
votes
2 answers

to detect IPTC content in jpeg image

I need to know how to check whether given jpeg image has iptc content in it or not ? This should be done with java.As i am new to this techonology. Could someone help regarding this.
jasper
  • 81
  • 2
  • 6
2
votes
0 answers

EXIF Title tag in PHP with with exif_read_data()

I have some struggles to get the "Title" tag from a JPG file with PHP. I guess I'm looking through the wrong EXIF group. I'm using following code: $exif = exif_read_data( $image['temp_name'], 0, true); $exif_description =…
Alx
  • 6,275
  • 7
  • 32
  • 54
2
votes
1 answer

How do I add different IPTC keywords to multiple images?

I have a folder containing thousands of images and each image needs a unique list of keywords added to it. I also have a table with fields showing the file path and associated list of desired keywords for each image. For example, one record might…
Jason
  • 153
  • 1
  • 7
2
votes
3 answers

How to add keywords in image file with PHP?

I try to add keywords with this method //echoing the img to check the path echo ""; //creating the object and use of setImageProperty method to add keywords $imgi = new…
Richard
  • 994
  • 7
  • 26
2
votes
0 answers

Installing py3exiv2 on Windows with pip

I tried some exif/iptc/xmp libraries for Python3, but they are all neither mature nor fully-fledged. exifread can only read exif information iptcinfo3 is not properly ported to Python3 Therefore, i tried to use py3exiv2 on Windows 7/10. However, i…
Franky1
  • 402
  • 6
  • 15
2
votes
1 answer

Read /Edit / Write jpg IPTC metadata in Java

I am using Apache Commons but it is not enough for me because it is so old technology. So ,i found iCafe and it seems better but I am having the error below. Any idea what i am doing wrong? private static List createIPTCDataSet()…
2
votes
2 answers

node - Parse iptc data from image buffer

Trying to find a way to extract IPTC data from an image file buffer, there are existing libraries available on npm that allow you to open and read a file from the local filesystem but i am storing files on AWS S3 and would prefer to use buffers…
Cade Embery
  • 433
  • 1
  • 5
  • 18
2
votes
0 answers

Metadata Manipulation Libraries for Python 3.6 Mac OS X El Capitan other than py3exiv2 & GExiv2

I edited the question for being too opinion based. I am desperately searching for a library to manipulate (read/write) image metadata with Python 3.6 on Mac OS X El Capitan. I tried GExiv2. After approximately two hours I was able to install it and…
hou2zi0
  • 71
  • 5
2
votes
1 answer

Modify EXIF/IPTC info in .dng (rawfiles) via Python?

Anyone aware of some Python module or library capable of modifying EXIF and IPTC data in Adobe RAW files (.dng)? Until some eight years ago, I used JPEG and could rather easily do such modifications helped by Python. After having switched to RAW, I…
2
votes
2 answers

Accessing to variable from memory

I created an image class, it loads and resizes image, then crops and lastly watermarks it. For last step, I would like to add IPTC data to the this image. For what I know there is only iptcembed function to accomplish this. The problem is iptcembed…
Deniz Porsuk
  • 492
  • 1
  • 6
  • 20
2
votes
1 answer

Embedding IPTC image data with PHP GD

I'm trying to embed a IPTC data onto a JPEG image using iptcembed() but am having a bit of trouble. I have verified it is in the end product: // Embed the IPTC data $content = iptcembed($data, $path); // Verify IPTC data is in the end image $iptc =…
Ross
  • 46,186
  • 39
  • 120
  • 173
2
votes
2 answers

JpegBitmapEncoder.Save() throws exception when writing image with metadata

I'm building a WPF desktop app to help me organize photos to post to Facebook. Here's my code for creating a copy of a photo at a new location with a caption (EXIF + IPTC + XMP) added: private void SaveImageAs(string currPath, string newPath,…
amb9800
  • 365
  • 2
  • 5
  • 14