Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
zoomphoto  
#1 Posted : Friday, April 4, 2008 12:55:51 PM(UTC)
zoomphoto

Rank: Member

Groups: Member
Joined: 4/4/2008(UTC)
Posts: 11

I just purchased the Java version of this software today, and so far, the implementation has gone well.

One issue I have, is that even with AllowAutoRotate on, not all images which show as rotated in the drag-n-drop area, actually end up rotated as a file on the server.

Here are my settings:

Code:
//Configure appearance and behaviour.
iu.addParam("PaneLayout", "ThreePanes");
iu.addParam("ShowDebugWindow", "true");
iu.addParam("ShowDescriptions", "false");
iu.addParam("BackgroundColor", "#ffffff");

//Configure Image Uploader to rotate photos automatically
//according to the orientation stored in EXIF metadata.
iu.addParam("AllowAutoRotate", "true");

//Append the form with total file size to the upload.
iu.addParam("AdditionalFormName", "Form1");

//Configure file mask to upload JPEG images only.
iu.addParam("FileMask", "*.jpeg;*.jpg;*.jpe");

//Set image size restrictions.
iu.addParam("MinImageWidth", "360");
iu.addParam("MinImageHeight", "360");

//Exclude the source file from upload because only
//resized versions of the photo will be sent.
iu.addParam("UploadSourceFile", "false");

//Configure settings of the optimized image. Optimized image
//is resized to 1200x1200 with JPEG quality = 60 and EXIF
//metadata is preserved.
iu.addParam("UploadThumbnail1FitMode", "Fit");
iu.addParam("UploadThumbnail1Width", "800");
iu.addParam("UploadThumbnail1Height", "800");
iu.addParam("UploadThumbnail1JpegQuality", "80");
iu.addParam("UploadThumbnail1CopyExif", "true");

iu.addParam("UploadThumbnail2FitMode", "Fit");
iu.addParam("UploadThumbnail2Width", "640");
iu.addParam("UploadThumbnail2Height", "640");
iu.addParam("UploadThumbnail2JpegQuality", "80");

//Configure thumbnail settings.
iu.addParam("UploadThumbnail3FitMode", "Fit");
iu.addParam("UploadThumbnail3Width", "150");
iu.addParam("UploadThumbnail3Height", "150");
iu.addParam("UploadThumbnail3JpegQuality", "60");


//Configure URL files are uploaded to.
iu.addParam("Action", "http://www.zoomphoto.ca/upload.php");

//Add event handlers.
iu.addEventListener("UploadFileCountChange", "ImageUploader_UploadFileCountChange");
iu.addEventListener("Progress", "ImageUploader_Progress");

Some images do rotate as a file on the server, others do not... files are from the same camera, and both have complete EXIF. Both show as rotated properly in the Java window... Please help!

Thanks,

Joe

Edited by user Thursday, May 22, 2008 2:01:37 PM(UTC)  | Reason: Not specified

Alex Makhov  
#2 Posted : Friday, April 4, 2008 1:51:34 PM(UTC)
Alex Makhov

Rank: Advanced Member

Groups:
Joined: 8/3/2003(UTC)
Posts: 998

Hello Joe,

That's strange. Could you submit case with problem photos to test? Actually yesterday we have found another bug with rotation in Java version and these two bugs could correspond.

Edited by user Thursday, May 22, 2008 2:02:13 PM(UTC)  | Reason: Not specified

Sincerely yours,

Alex Makhov

UserPostedImage Follow Aurigma on Twitter!

zoomphoto  
#3 Posted : Friday, April 4, 2008 10:31:30 PM(UTC)
zoomphoto

Rank: Member

Groups: Member
Joined: 4/4/2008(UTC)
Posts: 11

Alex Makhov wrote:
Hello Joe,

That's strange. Could you submit case with problem photos to test? Actually yesterday we have found another bug with rotation in Java version and these two bugs could correspond.

Sure, photos are on the way.

Edited by user Thursday, May 22, 2008 2:02:37 PM(UTC)  | Reason: Not specified

zoomphoto  
#4 Posted : Saturday, April 5, 2008 6:53:29 AM(UTC)
zoomphoto

Rank: Member

Groups: Member
Joined: 4/4/2008(UTC)
Posts: 11

Did you get the images?
zoomphoto  
#5 Posted : Monday, April 7, 2008 1:48:51 AM(UTC)
zoomphoto

Rank: Member

Groups: Member
Joined: 4/4/2008(UTC)
Posts: 11

Alex, did you receive my files?
Alex  
#6 Posted : Monday, April 7, 2008 9:35:52 PM(UTC)
Alex

Rank: Member

Groups:
Joined: 11/8/2006(UTC)
Posts: 1

Hello,

Yes, the fix will be available shortly.

grouphutDev  
#7 Posted : Sunday, August 3, 2008 9:44:41 PM(UTC)
grouphutDev

Rank: Newbie

Groups: Member
Joined: 6/12/2008(UTC)
Posts: 8

Hi,

I am also getting the same problem with IU Java version, the files are saved on the server without rotation.

The image uploader version is 5.1.10.0.

Please let me know the solution ASAP.

Regards,

grouphutdev

Dmitry  
#8 Posted : Monday, August 4, 2008 7:21:08 PM(UTC)
Dmitry

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 8/3/2003(UTC)
Posts: 1,070

Thanks: 1 times
Was thanked: 12 time(s) in 12 post(s)
Hello,

This problem will be solved in the upcoming version 5.5. This new version will be available in a month.

Sincerely yours,

Dmitry Sevostyanov

UserPostedImage Follow Aurigma on Twitter!

zoomphoto  
#9 Posted : Tuesday, August 5, 2008 12:15:40 PM(UTC)
zoomphoto

Rank: Member

Groups: Member
Joined: 4/4/2008(UTC)
Posts: 11

Dmitry wrote:
Hello,

This problem will be solved in the upcoming version 5.5. This new version will be available in a month.

Do we get that version for no cost? Since this one has never really worked, I would like if I could get the upgrade sent to me ASAP!

Thanks,

Joe

Dmitry  
#10 Posted : Tuesday, August 5, 2008 1:36:23 PM(UTC)
Dmitry

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 8/3/2003(UTC)
Posts: 1,070

Thanks: 1 times
Was thanked: 12 time(s) in 12 post(s)
As you purchased Image Uploader Java 5, minor update to 5.5 will be free.
Sincerely yours,

Dmitry Sevostyanov

UserPostedImage Follow Aurigma on Twitter!

Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.