Class ResizeTransform

Definition

Namespace:
Tizen.Multimedia.Util
Assembly:
Tizen.Multimedia.Util.dll
API Level:
4

Resizes an image.

C#
Copy
public class ResizeTransform : ImageTransform
Inheritance
System.Object
ResizeTransform

Constructors

View Source

ResizeTransform(Size)

Initializes a new instance of the ResizeTransform class.

Declaration
C#
Copy
public ResizeTransform(Size size)
Parameters
Type Name Description
Size size

The size that an image is resized to.

Exceptions
Type Condition
System.ArgumentOutOfRangeException

The width of size is less than or equal to zero.
-or-
The height of size is less than or equal to zero.

API Level: 4

Properties

View Source

Size

Gets or sets the size that an image is resized to.

Declaration
C#
Copy
public Size Size { get; set; }
Property Value
Type Description
Size
Exceptions
Type Condition
System.ArgumentOutOfRangeException

The width of value is less than or equal to zero.
-or-
The height of value is less than or equal to zero.

API Level: 4