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

Notification

Icon
Error

Options
Go to last post Go to first unread
robdog  
#1 Posted : Tuesday, March 1, 2011 11:45:42 AM(UTC)
robdog

Rank: Newbie

Groups: Member
Joined: 2/28/2011(UTC)
Posts: 2

If I rotate the image in flash, the image saved to the server does not reflect the rotation. Can you tell me what I'm doing wrong?

protected void Page_Load(object sender, EventArgs e)
{

if (this.IsPostBack) return;

this.Uploader1.DestinationFolder = FileFolder;
this.Uploader1.UploadPane.ViewMode = PaneViewMode.Thumbnails;
this.Uploader1.UploadPane.ThumbnailPreviewSize = 200;
this.Uploader1.Restrictions.MaxFileCount = 1;
this.Uploader1.Restrictions.MaxFileSize = 50000000;
this.Uploader1.Restrictions.MaxTotalFileSize = 50000000;
this.Uploader1.Restrictions.FileMask = "[['Images (*.jpg; *.jpeg; *.png; *.gif)', '*.jpg;*.jpeg;*.png;*.gif;*.JPG;*JPEG;*.PNG;*.GIF']]";


}


<aur:ImageUploaderFlash ID="Uploader1" runat="server" Height="375px" Width="715px"
OnFileUploaded="Uploader1_FileUploaded">
<Converters>
<aur:Converter Mode="*.*=SourceFile" />
</Converters>
<FlashControl BgColor="#ccd0d2"></FlashControl>
</aur:ImageUploaderFlash>
Dmitry.Obukhov  
#2 Posted : Wednesday, March 2, 2011 4:05:23 AM(UTC)
Dmitry.Obukhov

Rank: Advanced Member

Groups: Member
Joined: 5/29/2010(UTC)
Posts: 1,310

Thanks: 8 times
Was thanked: 111 time(s) in 111 post(s)
Hello Robbe,

Rotation is applied to thumbnails only. Source files are uploaded without any changes.
According to your listed code, you specified source file mode of converters only. Please add thumbnail mode, and set other configuration for thumbnails. In this case, rotation will be applied to uploaded thumbnails.

Please let me know if you have some questions or problems with it.
Best regards,
Dmitry Obukhov
Technical Support. Aurigma, Inc.
robdog  
#3 Posted : Wednesday, March 2, 2011 5:20:21 AM(UTC)
robdog

Rank: Newbie

Groups: Member
Joined: 2/28/2011(UTC)
Posts: 2

Yep, eventually figured that out. You really ought to clarify that in the samples.
Users browsing this topic
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.