Created
January 18, 2025 03:25
-
-
Save thoughtfulbloke/7aeb5174d6ccc6e09ae170d4de0f16e9 to your computer and use it in GitHub Desktop.
proof of concept of batch add info from EXIF as text on photos using magick and exiftoolr in R
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(magick) | |
library(exiftoolr) | |
# Hard-coded folder path | |
folder <- "~/Desktop/photos" | |
# Function to process images | |
process_images <- function(folder) { | |
# Create the "texted" subfolder if it doesn't exist | |
texted_folder <- file.path(folder, "texted") | |
if (!dir.exists(texted_folder)) { | |
dir.create(texted_folder) | |
} | |
# Identify jpg/jpeg files in the folder | |
jpg_files <- list.files(folder, pattern = "\\.(jpg|JPG|jpeg|JPEG)$", full.names = TRUE) | |
for (file in jpg_files) { | |
# Read EXIF data | |
exif_data <- exif_read(file) | |
ExposureTime <- round(as.numeric(exif_data$ExposureTime), 5) | |
FNumber <- round(as.numeric(exif_data$FNumber), 2) | |
iso <- exif_data$ISO | |
# Read the image | |
img <- image_read(file) | |
# Create a white 50% see-through rectangle | |
img <- image_draw(img) | |
rect(0, 0, 1000, 400, col = rgb(1, 1, 1, alpha = 0.5), border = NA) | |
text(10, 150, paste("ExposureTime:", ExposureTime), col = "black", cex = 8, adj = 0) | |
text(10, 250, paste("FNumber:", FNumber), col = "black", cex = 8, adj = 0) | |
text(10, 350, paste("ISO:", iso), col = "black", cex = 8, adj = 0) | |
dev.off() | |
# Save the image to the "texted" subfolder | |
output_file <- file.path(texted_folder, basename(file)) | |
image_write(img, output_file) | |
} | |
} | |
# One overall function | |
process_images(folder) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment