Tagged Questions
7
votes
2answers
67 views
IPTC Data Management Library
I've written a fairly extensive script which manages images.
PHP imaging libraries strip meta data by default. So embedded data (like keywords, descriptions, author, etc) are gone. I've written a ...
0
votes
0answers
129 views
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 ...
2
votes
1answer
122 views
Storing massive EXIF and IPTC attributes in database
I'm writing an app that needs to handle more than 15.000 photos and I want to store into the database their EXIF and IPTC attributes.
My initial approach is to use MySQL and create a table to store ...
1
vote
1answer
206 views
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 ...
0
votes
2answers
271 views
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 ...
1
vote
1answer
222 views
How to manipulate diverse meta-infomations of image files in PHP
There are diverse formats to add meta-Information to image (and video) files. nearly every digitalcamera add them to fotos. And sometimes people don't want them to be published.
The standards I found ...
0
votes
1answer
257 views
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] ...
4
votes
1answer
1k views
Copy an image preserve its EXIF/IPTC data with PHP imageCreateFromJpeg?
I having some problems with an image that has EXIF/IPTC data stored in it.
When I use imageCreateFromJpeg (to rotate/crop or etc) the newly stored file doesn't preserve the EXIF/IPTC data.
My ...
0
votes
1answer
241 views
Manipulating/adding fields to exif-data iptc
when looking into metadata of images I was wondering how standardized this data actually has to be. Is it possible to add a custom field for an application? I understand that it might be not readable ...
0
votes
2answers
1k views
Read EXIF/IPTC information from image in Cocoa
I am unable to find any recent example on how to read EXIF/IPTC information from an image in Cocoa. Is there anything that can be easily done or should I use an external tool as exiftool and start it ...
0
votes
1answer
922 views
Using CGImageProperties to get EXIF properties
I want to be able to add a text comment to the metadata of a JPEG and be able to read it back from within an iphone app.
I thought this would be fairly simple as ios4 contains support for EXIF info. ...
2
votes
1answer
642 views
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:
<?php
// iptc_make_tag() function by Thies C. ...
5
votes
2answers
2k views
Extract IPTC information from JPEG using Javascript
I'm trying to extract IPTC photo caption information from a JPEG file using Javascript. (I know I can do this server-side, but I'm looking specifically for a Javascript solution.)
I found this ...
0
votes
1answer
787 views
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 ...
0
votes
1answer
384 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 ...
4
votes
5answers
844 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)?
9
votes
3answers
4k views
How do you get the country/state/region/city/state/zip/postal from GPS coordinates?
I have GPS coordinates on all of my photos. I want to include tags/IPTC data for the city, state, zip, etc.. However all I have is the GPS coordinates. How can I take these and get meaningful info in ...
