Rank: Member Groups: Member
Joined: 9/12/2004 Posts: 2 Points: 0
|
imageUploader3 thumbnails appear to all be created at 160 x 120 regardless of UploadThumbnail1Width & UploadThumbnail1Height. SourceFile is correct if/when used.
|
 Rank: Advanced Member Groups: Administration
, Member
Joined: 7/28/2003 Posts: 1,254 Points: -345 Location: WA, US
|
We confirm the problem. This reason of problem is that Image Uploader sends small embedded EXIF thumbnail, instead of specifed large one. We will release update with fix in the nearest days.
Best regards, Fedor Skvortsov
|
Rank: Member Groups: Member
Joined: 8/18/2004 Posts: 41 Points: 0
|
This is a big bug for my situation. I really do not care about the original source file. I hope this will be fixed soon.
Any clarity on the actual fix date?
|
 Rank: Advanced Member Groups: Administration
, Member
Joined: 7/28/2003 Posts: 1,254 Points: -345 Location: WA, US
|
The problem was fixed in version 3.0.751.0. You can download update here.
Best regards, Fedor Skvortsov
|
Rank: Newbie Groups: Member
Joined: 3/14/2008 Posts: 9 Points: 27
|
I am having the same problem. I have these lines of code
iu.addParam("FilesPerOnePackageCount", "1"); iu.addParam("MaxFileCount", maxFileCount); iu.addParam("MaxFileSize", maxFileSize); iu.addParam("MinImageHeight", "1"); iu.addParam("MinImageWidth", "1"); //upload thumbnail settings iu.addParam("UploadThumbnail1CopyExif", "true"); iu.addParam("UploadThumbnail1CopyIptc", "true"); iu.addParam("UploadThumbnail1JpegQuality","90"); iu.addParam("UploadThumbnail1FitMode", "Width"); iu.addParam("UploadThumbnail1Width", "600"); iu.addParam("UploadThumbnail1FallbackMode", "SourceFile");
In Java version, when I have gifs, pngs and jpeg in the same folder( My pictures). The jpegs are not resized properly. It always resizes to 160x120 size. The png and gifs upload the actual size which is right. I just want to resize jpegs. When I remove all the gifs and pngs from the folder I am uploading then the jpegs upload fine. Any info would be helpful.
Thanks
|