Tagged Questions
The iptc tag has no wiki summary.
10
votes
2answers
277 views
C# - inserting bytes in the middle of binary file
I want to add some string in the middle of image metadata block. Under some specific marker. I have to do it on bytes level since .NET has no support for custom metadata fields.
The block is built ...
7
votes
3answers
2k 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 ...
5
votes
3answers
949 views
Java library for reading and writing IPTC metadata to JPEG and TIFF
Does anyone know some opensource Java library for reading and writing IPTC metadata to JPEG and TIFF? Now I'm using Apache Sanselan. Unfortunately, it can only read IPTC, not write ...
4
votes
6answers
3k views
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, ...
2
votes
1answer
229 views
help writing exif and itpc data in PHP
Hallo Everyone.
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() ...
2
votes
1answer
595 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 ...
2
votes
5answers
468 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)?
1
vote
0answers
45 views
Calling libiptc API from a separate thread in a C program throws segmentation fault
I am working on performing iptables update through a custom c program using libiptc. The requirement is to invoke iptc APIs from a separate thread every 2 seconds.
I have written a simple C program ...
1
vote
1answer
30 views
What's the best way of cataloging large number of images?
I'm looking at setting a site up with a large number of searchable images, organised by keywords, tags etc. I'm planning to get the image information from the IPTC data. The images will be uploaded by ...
1
vote
1answer
280 views
JPEG file size markers, inserting bytes, IPTC metadata
JPEG file has several size markers. I'm interested in adding image metadata (IPTC, not XMP).
App13 segment starts with FF ED XX XX ..
8BIM IPTC metadata segment starts with 38 42 49 4D 04 04 00 00 ...
1
vote
1answer
493 views
IPTC .NET read/write c# library
I am looking for some library to read/write IPTC metadata from Jpg files.
Open source or paid, doesn't matter.
It should work with .NET 3.5 and c#.
Does anybody know such a library? I googled but ...
1
vote
1answer
198 views
Embedding IPTC to Image in PHP with GD
I am trying to take a photograph and create a thumbnail without losing the IPTC info that contains copyright info and other information. I am scripting using GD for the resize which of course results ...
1
vote
0answers
285 views
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 ...
1
vote
1answer
858 views
How to Read and Edit IPTC “Writer/Editor” tag using WPF
I am creating a WPF application that can read and write IPTC and XMP image metadata. I am having problem reading and writing the IPTC Writer/Editor property. The XMP counterpart of it works fine. I ...
1
vote
4answers
686 views
Error reading IPTC fields from JPEGs in .NET
I get the following exception when calling BitmapMetadata.GetQuery("/app13/irb/8bimiptc/iptc") on about 1% of JPEGs I have tried this on. What could be causing this and what can I do to fix it? (I ...
0
votes
1answer
12 views
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.
0
votes
0answers
88 views
Extract IPTC metadata from image and use as wordpress custom field
I need a way to publish new posts on wordpress with custom field keys and values based on image IPTC metadata. I am using the Yet Another Photo Blog (YAPB) plugin in combination with a bulk upload ...
0
votes
1answer
135 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. ...
0
votes
2answers
47 views
Strip a IPTC.php result into two variables
I have the following code:
<?php
require_once('IPTC.php');
$iptc = new Image_IPTC('001.jpg');
print_r($iptc);
?>
And it returns:
Image_IPTC Object ( [_sFilename] => 001.jpg ...
0
votes
1answer
78 views
cant call function from within its class but can otherwise?
- just can't seem to get a result from a function called in its class...
require_once($_SERVER['DOCUMENT_ROOT']."/youradmin_v2/scripts/php/IPTC.php");
class Media{
function Media() {
...
0
votes
2answers
287 views
No UTf-8 when write IPTC data in JPG with iptcembed
function iptc_make_tag($rec, $data, $value){
$length = strlen($value);
$retval = chr(0x1C) . chr($rec) . chr($data);
if($length < 0x8000)
{
$retval .= chr($length >> 8) . ...
0
votes
1answer
340 views
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 ...
0
votes
1answer
508 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
299 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
2k views
Extracting IPTC/EXIF data from tif files in using Java
The system I'm working on has a feature to extract metadata from JPEG files using the com.drew.metadata package. http://www.drewnoakes.com/code/exif/javadoc/ However that is limited to JPEG files, and ...
0
votes
1answer
233 views
Appending metadata to a newly created image via php?
I have php script that creates a temporary watermark image for users that are not logged in. The original image contains IPTC (metadata) information that I would like to retain, however, when the ...
0
votes
1answer
1k views
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, ...