HTML: manage images EXIF orientation TAG


To remove any EXIF tag that forces image to rotate, you can strip images with:

exiftool -Orientation= -thumbnailimage= -ifd1:all= -overwrite_original *.jpg

And also you can use a css property file with:

img {
    border: none;
    image-orientation: none;
}


return to gimbo wiki home page