Tagged Questions
0
votes
1answer
45 views
C# image save dots
I don't know that i'm doing wrong, I have been looking around the web, and tried a lot of different things but nothing works, when i try to save the image there is a lot of gray dots
the result can ...
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 ...
0
votes
1answer
165 views
Extracting EXIF data from android camera
I'm writing an android app for detecting leaf spot diseases in plants. So I have to take photo of affected leaf. So when taking photos I have to take the photo within appropriate distance and ...
0
votes
1answer
478 views
Read image dimensions: exif vs gd vs imagemagick?
Processing already done by imagick.
But we have a bunch of files already processed and in one of method want to extract only their width/height.
As I understand, Imagick to getImageWidth reads whole ...
1
vote
1answer
94 views
How Can I Read EXIF Data of Fotographs? [duplicate]
Possible Duplicate:
How to get the EXIF data from a file using C#
I want to read Exif data from photohraphs with C#. Which tools or code samples can use?
1
vote
1answer
101 views
How to transfer an image on iPhone without leaving the exif thumbnail in the header?
I manipulated some images replacing the thumbnail present in the photo exif header. I would be interested in transferring such a photo to an iPhone anyway everytime I transfer it via e-email or in ...
0
votes
1answer
391 views
Quickly extract EXIF from an image (not only jpeg, but also raw formats, such as NEF, DNG, etc) [duplicate]
Possible Duplicate:
Reading EXIF data from JPG
In my C# 3.0, .NET 3.5 project I am doing some image-related stuff. Particularly, I need to extract EXIF info.
Regular means of EXIF ...
1
vote
2answers
299 views
90 degree image rotation and reset EXIF rotation
I have code to batch resize digital photos.
Some photos are taken in portrait orientation.
For the photos in portrait orientation, I have to rotate them.
I am using the following C# code to rotate ...
3
votes
1answer
724 views
What's the correct way to extract brightness out of a JPEG image (gamma corr., etc.)?
in a nutshell: I can't extract meaningful light intensities out of RGB values from JPEG photos, and trying to account for gamma correction or sRGB only makes matters worse.
I'm doing a toy project, ...
0
votes
3answers
473 views
how to get exif from photo?
i want to get exif from picture. how i do this optimally?
NSData *dataOfImageFromGallery = UIImageJPEGRepresentation (workingImage,0.5);
CGImageSourceRef imageSource;
imageSource = ...
0
votes
1answer
357 views
Base64 - Exif metadata
Is it possible to add EXIF metadata for "ImageDescription" to a base64 JPG image string?
Could this one have a EXIF data "ImageDescription" that claims it's the Stack Overflow logo? ...
0
votes
1answer
187 views
What is best tool to get EXIF data?
I am looking for backend best tool to retrieve Exif data of images. There are various tool and even function are provided for some programming languages to get Exif data, but they are not reliable. ...
1
vote
1answer
184 views
Best way to process Exif data in backend?
There are a lot of ways to process Exif data in backend, but they all have their problem of supporting most of the camera. The main one I came across is Perl powered ...
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 ...
1
vote
2answers
1k views
Decoding an mpf exif block in an MPO stereo image file
I am writing something to get at the information contained in an MPO multi-picture file produced by cameras such as the fuji 3D cameras.
I have the proposed spec, which is obviously written to ...
4
votes
6answers
5k views
Remove EXIF data from JPG using PHP
Is there any way to remove the EXIF data from a JPG using PHP? I have heard of PEL, but I'm hoping there's a simpler way. I am uploading images that will be displayed online and would like the EXIF ...
3
votes
5answers
2k views
How is exif info encoded?
Greetings,
I'm going to get exif info from some images using android. I know there are some standard java lib's out there that I could use with the device. I'm sure I will end up using one.
But in ...
2
votes
4answers
262 views
Is there some easy way to detect if a file has EXIF data?
Is there some cheap and reliable way to detect if an image file has EXIF data? Something like "read the first 100 bytes and search for EXIF substring" is highly preferable. I don't need to read and ...
0
votes
2answers
2k views
Is it possible to write or change EXIF data of images saved to iPhone photo library
I would like to add some custom data to an image the user generates in my app, no more than 1kb tops. I could probably hide the data in the image, but I want to do this in a way that will resist ...
3
votes
2answers
2k views
Which EXIF tag to store keyword/tag for a photo?
I am developing a photo gallery which will read/write EXIF tags. I will put photo title in the EXIF tag DocumentName and description in EXIF tag ImageDescription. I also plan to use the geo-tags. But ...
3
votes
2answers
2k views
How to save an EXIF format image file in .NET 3.5
I want to save an image in EXIF format using System.Drawing.Image.Save or a similar method in a C# application using .NET framework v3.5. The MSDN documentation lists EXIF as an option for ...
17
votes
5answers
6k views
Resize image in Python without losing EXIF data
I need to resize jpg images with Python without losing the original image's EXIF data (metadata about date taken, camera model etc.). All google searches about python and images point to the PIL ...
13
votes
7answers
17k views
How do I add exif data to an image?
On our site, we get a large amount of photos uploaded from various sources.
In order to keep the file sizes down, we strip all exif data from the source using mogrify:
mogrify -strip image.jpg
...