The RasterResizeMode Enumeration is available in LEADTOOLS Document and Medical Imaging toolkits.
Determines how to fit the image in the destination rectangle.| Visual Basic (Declaration) | |
|---|---|
<DataContractAttribute(Namespace="http://Leadtools.Services.Raster.DataContracts/2009/01", Name="RasterResizeMode")> Public Enum RasterResizeMode Inherits System.Enum Implements IComparable, IConvertible, IFormattable | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As RasterResizeMode | |
| C# | |
|---|---|
[DataContractAttribute(Namespace="http://Leadtools.Services.Raster.DataContracts/2009/01", Name="RasterResizeMode")] public enum RasterResizeMode : System.Enum, IComparable, IConvertible, IFormattable | |
| C++/CLI | |
|---|---|
[DataContractAttribute(Namespace="http://Leadtools.Services.Raster.DataContracts/2009/01", Name="RasterResizeMode")] public enum class RasterResizeMode : public System.Enum, IComparable, IConvertible, IFormattable | |
| Member | Description |
|---|---|
| Fit | Fit the image into the destination rectangle while maintaining the aspect ratio. If the image size is smaller than the destination rectangle, no resizing is done. |
| FitAlways | Always fit the image into the destination rectangle while maintaining the aspect ratio even if the image size is smaller than the destination rectangle. |
| FitWidth | Fit the image width to be the size of the width of the destination rectangle while maintaining the aspect ratio. |
| Normal | Normal, no sizing |
| Stretch | Fit the image to fill the destination rectangle. Aspect ratio might not be maintained. |
System.Object
System.ValueType
System.Enum
Leadtools.Services.Raster.DataContracts.RasterResizeMode
Target Platforms: Microsoft .NET Framework 3.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code