-
Notifications
You must be signed in to change notification settings - Fork 134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
preserveHeaders parameter should be re-implemented #94
Comments
I do not quite understand what might be the benefit..? Can you describe the actual case? If you are not familiar with ActionScript you could contribute JavaScript version, or Silverlight. |
The case is simple: Done. Why we have to change the EXIF data? |
Simply to say, usually, we can have two way to do the right job on application level.
2). The second way is processing the image before uploading, we can do So, in our case, we have to use the solution (2), because our server designed an API to return to the client for displaying a very useful function to our users, which needs the |
The reason why I was asking is that usually third party image manipulation services are taking into account the Orientation tag when it is present and auto-rotate the image accordingly. That's why we auto-rotate only when we strip it off and leave the whole thing intact, when - not. While what you are asking is possible, the party to be blamed for the problem in my opinion is that service that as I understood simply ignores the Orientation tag... Have you tried to communicate it with them? |
Yes Davit, Can't agree more. The server side would be easier to provide a better way to solve the issue. I did contact our server vendor, they do provide a solution, but it's not the way by persistence, which means they provide a lazy display solution on the issue:
The solution fits most of the demands, but not ours, because we need to get the Anyway, I had resolved the issue on our application server, which will upload the original image by using Plupload, then we will process the But what I'm going to say here is that why don't Plupload provide a better solution on the client side? Think about the the case, if the Above is my use case, just hope Plupload could make the part of Best Regards, Leon |
Hi,
I checked out the implement of parameter of
preserveHeaders
.Once the parameter set to
false
, the whole EXIF meta data will be removed after automatically correcting the photoOrientation
.This is useless if I'm trying to resize the image(with automatic orientation correction) then uploading to the server with EXIF data.
I think the elegant solution of this part should be by adding another parameter which will not remove the full EXIF data. Remove the
Orientation
EXIF tag instead of removing the full EXIF data if it's possible on theruntime
on HTML5/Flash.My project is currently using Plupload and facing the issue, I need to keep EXIF data before uploading to the server but taking the correct
Orientation
.You may ask me to do the right job on server side, but the photo uploading server is hosted by our vendor.
I would like to contribute the code for my solution, but at the moment I'm not familiar with ActionScript.
Could anyone can help to have the solution done would be much appreciated.
Best Regards,
Leon
The text was updated successfully, but these errors were encountered: