Rank: Advanced Member
Groups: Guest
Joined: 3/3/2008(UTC) Posts: 185
Thanks: 8 times
|
Hi, I am using this code to Rotate 90 Degree Clock Wise for my picture. bitmap = New Aurigma.GraphicsMill.Bitmap(_item.Pidl.Path) bitmap.Transforms.Rotate(90) But, when it come to big picture, and high res, it will run very slow. Please advice.
|
|
|
|
Rank: Advanced Member
Groups: Guest
Joined: 7/28/2003(UTC) Posts: 1,660
Thanks: 5 times Was thanked: 76 time(s) in 74 post(s)
|
Hello, Please use RotateAndFlip method instead of Rotate one. It rotates on 90/180/270 degrees much faster then on arbitrary angle: Code:bitmap.Transforms.RotateAndFlip(System.Drawing.RotateFlipType.Rotate90FlipNone);
|
Best regards, Fedor Skvortsov
|
|
|
|
Rank: Advanced Member
Groups: Guest
Joined: 3/3/2008(UTC) Posts: 185
Thanks: 8 times
|
Fedor wrote:Hello, Please use RotateAndFlip method instead of Rotate one. It rotates on 90/180/270 degrees much faster then on arbitrary angle: Code:bitmap.Transforms.RotateAndFlip(System.Drawing.RotateFlipType.Rotate90FlipNone);
Thanks !!!
|
|
|
|
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.