ImageTaskBase<T>.LiquidResize Method
Definition
- Namespace
- GleamTech.ImageUltimate
- Assembly
- GleamTech.ImageUltimate.dll
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.
public T LiquidResize(int width, int height, ResizeMode resizeMode = ResizeMode.Max)
Parameters
widthintThe 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.
heightintThe 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.
resizeModeResizeModeThe resize mode which is used to determine the resulting width and height and resolve aspect ratio differences.
Returns
- T
The same instance of this class.