ImageTaskBaseTLiquidResize Method
Resizes the current image to the given dimensions in content-aware manner (seam carving).
The command is added to the chain and not executed until the actual processing is done.
Namespace: GleamTech.ImageUltimateAssembly: GleamTech.ImageUltimate (in GleamTech.ImageUltimate.dll) Version: 6.2.0
public T LiquidResize(
int width,
int height,
ResizeMode resizeMode = ResizeMode.Max
)
Public Function LiquidResize (
width As Integer,
height As Integer,
Optional resizeMode As ResizeMode = ResizeMode.Max
) As T
- width Int32
-
The desired width of the resulting image.
If value is 0, width will be automatically calculated to preserve aspect ratio.
Value will be treated as percentage when Percentage is used.
- height Int32
-
The desired height of the resulting image.
If value is 0, height will be automatically calculated to preserve aspect ratio.
Value will be treated as percentage when Percentage is used.
- resizeMode ResizeMode (Optional)
-
The resize mode which is used to determine the resulting width and height
and resolve aspect ratio differences.
TThe same instance of this class.