Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [exif]

Exchangeable image file format is a standard for storing metadata such as camera, lens, and geo information in JPEG and TIFF files

-5 votes
1 answer
49 views

I have a base64 code of an jpeg image. I want to remove the geolocation data from this string and get a new encoded string of an image? [closed]

I have already tried the Apache Commons library and the reading and rewriting images. The problem is it strips down all the metadata. This includes orientation as well which is very important to be ...
Gourav Kumar Shaw's user avatar
0 votes
1 answer
57 views

How to update exif data without losing JFIF header?

I use the following code to rotate an JPG image by 180 degrees, by updating EXIF header. I want to avoid re-encoding the image : import PIL import piexif filename = "somefile.jpg" img = PIL....
tigrou's user avatar
  • 4,446
0 votes
0 answers
32 views

Android Camera doesn't set the orientation EXIF tag

In the storeImage function in the LegacyCamera app of AOSP, there is a call to Exif.getOrientation to obtain the orientation from the image to set it later when storing it. In getOrientation, if the ...
jesusjimsa's user avatar
1 vote
0 answers
64 views

How to get GPS, and Time data from image EXIF in android?

I have a task in adnroid (kotlin): Get the EXIF data from images, like coordinates and time. This whole android developing is new to me, javascript and .NET was my prev stack. So I make an object from ...
Viktor Szabados's user avatar
0 votes
0 answers
51 views

Can I add Custom Meta Tags to Image File in JavaScript captured on Web Camera?

I have a function in my JavaScript code that captures an image from a video stream and saves it as a file. In the mediaRecorder.onstop event handler, I convert the captured image to a file format and ...
Abhishek's user avatar
0 votes
2 answers
110 views

How do I add EXIF GPS Data to an Image JPEG on IOS

I have a solution which works on Android using EXIFInterface. However I struggle to get it working on IOS as there seems to be no interface in oder to do that. What I found so far: I am sure something ...
Fraktalia's user avatar
0 votes
0 answers
54 views

How to add metadata (exif) to the generated blob from canvas and download it using fileSaver

I have a project in Angular and I generate a map image in canvas using OpenLayers, then I download it locally with the extension .png/.tiff using fileSaver. How can I add metadata to the downloaded ...
Bulka's user avatar
  • 142
1 vote
0 answers
72 views

PKG_CONFIG missing Rust with EXIF

I am attempting to create a Rust function to parse image metadata for png, jpg, jpeg, heic, and other common formats. I was attempting to use the EXIF crate exif = "0.0.1", however I receive ...
Hchap's user avatar
  • 58
1 vote
2 answers
166 views

Python: How to check if JPG has clipping path?

is there a solution to check if a JPG file has a clipping path? I know I can do it for example with ImageMagick CLI magick identify -verbose but my target solution should be way easier: Running a ...
ChrizZz90's user avatar
0 votes
0 answers
43 views

Unable to imgcat webcam snapshot jpeg unless I convert it to another image format

I have a 3d printer with a webcam on it, and I can view snapshots of the webcam if I just go to the URL http://my-printer/webcam/?action=snapshot&cacheBust=$(date +%s). I've been trying to use ...
J H's user avatar
  • 33
0 votes
1 answer
131 views

Exif and EXIF are two different Chunks with different format

I am creating a parser which would extract the Exif Meta Data from an image, I followed this documentation to parse the exif data from a JPEG file and it worked, // Here is the first 16 bytes of exif ...
wetler's user avatar
  • 375
2 votes
1 answer
53 views

How to retrieve the "Title" field from Lightroom on a JPEG using ImageMagick?

I am putting Title & Caption onto my photos in Lightroom, then exporting them as JPEG. Later in my workflow I am using ImageMagick (through a .NET library) to process these images. I can retrieve ...
Duncan Mackenzie's user avatar
0 votes
0 answers
29 views

Fujifilm X-T5 EXIF orientation says horizontal but image displays as portrait, why?

I have a photo blog where I use a script to differentiate between landscape and portrait photos (because they're displayed in different part of the page). I used to shoot with a Fujifilm X-T2 and ...
tanman's user avatar
  • 1,389
2 votes
2 answers
126 views

Powershell error "A generic error occurred in GDI+." when trying to overwrite the image after changing its properties

i'm trying to batch edit lot of photos that i have saved on an HDD. Basically i need to change the property of the Date Taken so that i can index them. I will use the name of the file to get the ...
AndyMcMars's user avatar
0 votes
1 answer
726 views

How to Correctly Get and Update Title, Comments, and Tags in JPEG Metadata Using Python?

I'm working on a Python script that processes a batch of JPEG images, updating their metadata to include new titles, comments, and tags. My goal is to read the metadata from a MySQL database and apply ...
bymechul's user avatar

15 30 50 per page
1
2 3 4 5
123