Visual Basic (Declaration) | |
---|---|
Public Function New( _ ByVal maskImage As RasterImage, _ ByVal removeObjectColor As RasterColor, _ ByVal preserveObjectColor As RasterColor, _ ByVal useRemoveObjectColor As Boolean, _ ByVal usePreserveObjectColor As Boolean, _ ByVal newWidth As Integer, _ ByVal widthUpScalingFactor As Integer, _ ByVal newHeight As Integer, _ ByVal heightUpScalingFactor As Integer, _ ByVal upScalingOrder As Integer _ ) |
Visual Basic (Usage) | Copy Code |
---|---|
Dim maskImage As RasterImage Dim removeObjectColor As RasterColor Dim preserveObjectColor As RasterColor Dim useRemoveObjectColor As Boolean Dim usePreserveObjectColor As Boolean Dim newWidth As Integer Dim widthUpScalingFactor As Integer Dim newHeight As Integer Dim heightUpScalingFactor As Integer Dim upScalingOrder As Integer Dim instance As New IntelligentUpScaleCommand(maskImage, removeObjectColor, preserveObjectColor, useRemoveObjectColor, usePreserveObjectColor, newWidth, widthUpScalingFactor, newHeight, heightUpScalingFactor, upScalingOrder) |
C# | |
---|---|
public IntelligentUpScaleCommand( RasterImage maskImage, RasterColor removeObjectColor, RasterColor preserveObjectColor, bool useRemoveObjectColor, bool usePreserveObjectColor, int newWidth, int widthUpScalingFactor, int newHeight, int heightUpScalingFactor, int upScalingOrder ) |
C++/CLI | |
---|---|
public: IntelligentUpScaleCommand( RasterImage^ maskImage, RasterColor removeObjectColor, RasterColor preserveObjectColor, bool useRemoveObjectColor, bool usePreserveObjectColor, int newWidth, int widthUpScalingFactor, int newHeight, int heightUpScalingFactor, int upScalingOrder ) |
Parameters
- maskImage
- RasterImage object that references mask image.
- removeObjectColor
- RasterColor value that specifies color of the area in the mask image to be removed. It has to be different than the other image colors. If no remove color exists, then pass null.
- preserveObjectColor
- RasterColor value that specifies color of the area in the mask image to be removed. It has to be different than the other image colors. If no remove color exists, then pass null.
- useRemoveObjectColor
- True to use the removeObjectColor parameter otherwise it is false.
- usePreserveObjectColor
- true to use the removeObjectColor parameter otherwise it is false.
- newWidth
- New width. Range from 1 to width of the image less 1.
- widthUpScalingFactor
- Number of the upscaling process stages for the new width to be achieved.
- newHeight
- New height. Range from 1 to height of the image less 1.
- heightUpScalingFactor
- Number of the upscaling process stages for the new height to be achieved.
- upScalingOrder
- Flag that determines whether processing will start with the width first and then the height or vice versa. Pass 0 to start with the height or pass 1 to start with the width.
Refer to IntelligentUpScaleCommand.
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7