How to strip EXIF Metadata from an Image before uploading to S3 without loading the entire file into memory
I have a service that uploads images to AWS S3 using a MultipartFile. These images are later served as public files. There is a security concern: these images might contain sensitive EXIF metadata (e.g., geolocation data) that has to be removed out before making them public.
How to strip EXIF Metadata from an Image before uploading to S3 without loading the entire file into memory
I have a service that uploads images to AWS S3 using a MultipartFile. These images are later served as public files. There is a security concern: these images might contain sensitive EXIF metadata (e.g., geolocation data) that has to be removed out before making them public.