Do you have some feature in mind that you'd love to see in Couch? Let us know.
4 posts Page 1 of 1
Is it possible to use the exif information from a photo when uploading it to ensure the orientation is correct?

If not is it possible to give the admin an option to rotate the image be 90/180/270° to fix this?

Thanks again,
M
There are 10 types of people in this world ... Those who can count in binary and …
I also look for something similar.
However, it might be easier to rotate images upon displaying via modding cms:thumbnail tag or similar.
Any good ideas?
I needed this feature for a site I was building, which uses the gallery quite heavily. My solution was to modify the "couch/includes/plupload/upload.php" file by adding this:

Code: Select all
resize: {
            preserve_headers: false,
            crop: false,
            fit: false
},


to
Code: Select all
$("#uploader").pluploadQueue({

(should be line 154)

More documentation on this: https://www.plupload.com/docs/v3/Image- ... ip-headers
<...> If meta headers contain Orientation tag, JPEG will be auto-rotated accordingly.
Thanks for sharing that info @Kulverstukas :)
4 posts Page 1 of 1