T O P I C R E V I E W |
pierrotsc |
Posted - Feb 27 2019 : 16:04:47 Are these instructions from the manual correct ? // Rotate the image 45° clockwise at highest quality and using the ImageEnView background color ImageEnView1.Proc.Rotate( 315, ierBicubic, -1 );
// Rotate the image 90° clockwise (Note: AntialiasMode is irrelevant for 90 deg. rotations) ImageEnView1.Proc.Rotate( 270 );
// Rotate the image 180° clockwise ImageEnView1.Proc.Rotate( 180 );
// Rotate the image 90° counter-clockwise ImageEnView1.Proc.Rotate( 90 );
When i use 270, i get counter clockwise and not clockwise it looks like. |
3 L A T E S T R E P L I E S (Newest First) |
xequte |
Posted - Feb 27 2019 : 20:00:47 Hi
Naturally rotation to the right is clockwise.
However, in ImageEn a 90 deg. rotation is counter-clockwise (= Left). I personally agree that this is not intuitive, but that decision was made well before we took over the ImageEn project.
Nigel Xequte Software www.imageen.com
|
pierrotsc |
Posted - Feb 27 2019 : 19:33:34 If you rotate clockwise, your image should rotate to the right (90). at least this is on how photoshop works. |
xequte |
Posted - Feb 27 2019 : 17:40:09 Hi
I'm not seeing that.
Rotate( 90 ) = Rotate Left Rotate( 270 ) = Rotate Right
Nigel Xequte Software www.imageen.com
|