Leadtools.Codecs Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
ViewPerspective Property
See Also 
Leadtools.Codecs Namespace > CodecsStartDecompressOptions Structure : ViewPerspective Property



Gets or sets a value indicating the view perspective of the compressed data.

Syntax

Visual Basic (Declaration) 
Public Property ViewPerspective As RasterViewPerspective
Visual Basic (Usage)Copy Code
Dim instance As CodecsStartDecompressOptions
Dim value As RasterViewPerspective
 
instance.ViewPerspective = value
 
value = instance.ViewPerspective
C# 
public RasterViewPerspective ViewPerspective {get; set;}
C++/CLI 
public:
property RasterViewPerspective ViewPerspective {
   RasterViewPerspective get();
   void set (RasterViewPerspective value);
}

Return Value

A RasterViewPerspective that indicates the view perspective of the compressed data.

Possible values are:

ValueMeaning
RasterViewPerspective.TopLeftTop-left of image is first in memory
RasterViewPerspective.TopLeft90RasterViewPerspective.TopLeft rotated clockwise by 90 degrees
RasterViewPerspective.TopLeft180RasterViewPerspective.TopLeft rotated clockwise by 180 degrees
RasterViewPerspective.TopLeft270RasterViewPerspective.TopLeft rotated clockwise by 270 degrees
RasterViewPerspective.BottomLeftBottom-left of image is first in memory
RasterViewPerspective.BottomLeft90RasterViewPerspective.BottomLeft rotated clockwise by 90 degrees
RasterViewPerspective.BottomLeft180RasterViewPerspective.BottomLeft rotated clockwise by 180 degrees
RasterViewPerspective.BottomLeft270RasterViewPerspective.BottomLeft rotated clockwise by 270 degrees

Example

For an example, refer to RasterCodecs.StartDecompress.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also