18 Sep 2024
EXIF (Exchangeable Image File Format) data is information that is embedded within digital images and is automatically generated by digital cameras and smartphones. This data includes information such as the date and time the image was taken, the camera make and model, the shutter speed, ISO settings, and GPS coordinates of where the photo was taken. While this information can be useful for organizing and cataloging personal photo collections, it can also pose a risk to privacy and security when shared online.pip install pillow
, you can remove the EXIF data with 4 simple lines of code. You can do it like this:
from PIL import Image
im = Image.open('image-with-exif.jpg')
im.getexif().clear() # Removes the data
im.save('image-without-exif.jpg')
Privacy policy
Published 2024-07-28
Privacy/data policy for the website PhilipSoerensen.com
Read the post →Converting images
Published 2024-05-14 — Updated 2024-07-28
Converting images to and from various different formats (AVIF, DNG, WEBP etc.) with Ubuntu CLI.
Read the post →Get started developing Wordpress plugins in 5 minutes
Published 2024-05-14
Developing plugins for Wordpress can be easy. Start developing customized code for Wordpress today.
Read the post →