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




Gets or sets a value which indicates whether the aspect ratio of the image should be maintained when creating the thumbnail.

Syntax

Visual Basic (Declaration) 
Public Property MaintainAspectRatio As Boolean
Visual Basic (Usage)Copy Code
Dim instance As CodecsThumbnailOptions
Dim value As Boolean
 
instance.MaintainAspectRatio = value
 
value = instance.MaintainAspectRatio
C# 
public bool MaintainAspectRatio {get; set;}
Managed Extensions for C++ 
public: __property bool get_MaintainAspectRatio();
public: __property void set_MaintainAspectRatio( 
   bool value
);
C++/CLI 
public:
property bool MaintainAspectRatio {
   bool get();
   void set (bool value);
}

Return Value

true to indicates that the aspect ratio of the image should be maintained when creating the thumbnail, otherwise; false.

Example

For an example, refer to RasterCodecs.ReadThumbnail.

Remarks

When set to true, the generated thumbnail's width and height will not match both Width and Height if the original aspect ratio was not 1:1.

If you desire the thumbnail be generated with exactly the requested width and height while still maintaining the aspect ratio of the actual image, set both MaintainAspectRatio and ForceSize to true.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also