LEADTOOLS WinRT(Leadtools.Controls)
LEAD Technologies, Inc

RotateAngle Property

Example 

Gets or sets the value of the rotation angle to use when displaying the image. WinRT support
Syntax
public double RotateAngle {get; set;}
 get_RotateAngle();
set_RotateAngle(value);

Property Value

The rotation angle for the image display, in degrees. The default value is 0.
Remarks

Changing the value of this property will fire the PropertyChanged and TransformChanged events.

This is a display value and the image data will not be changed. Only the value of Transform.

Rotating an image is similar to rotating a rectangle, the values of "width" and "height" might change. When you rotate the image using the RotateAngle property. For example, if you have an image that is 100 by 200 pixels and you rotate it by 90 degrees clock wise, the new image size should be 200 by 100 pixels. Then the viewer will rotate the image around 0,0 and translate it to come up with a transformation that will show the image in this position. The new scroll area will be adjusted according to the image's new size (200, 100).

Example
Copy CodeCopy Code  
[TestMethod]
public void RotateAngleExample()
{
   // Rotate by 30
   _viewer.RotateAngle = _viewer.RotateAngle + 15;
   _infoLabel.Text = "Angle: " + _viewer.RotateAngle;
}
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

ImageViewer Class
ImageViewer Members

 

 


Products | Support | Contact Us | Copyright Notices

© 2006-2012 All Rights Reserved. LEAD Technologies, Inc.