skew

open fun skew(src: Bitmap, kx: Float, ky: Float): Bitmap

Return the skewed bitmap.

Return

the skewed bitmap

Parameters

src

The source of bitmap.

kx

The skew factor of x.

ky

The skew factor of y.

open fun skew(src: Bitmap, kx: Float, ky: Float, recycle: Boolean): Bitmap

Return the skewed bitmap.

Return

the skewed bitmap

Parameters

src

The source of bitmap.

kx

The skew factor of x.

ky

The skew factor of y.

recycle

True to recycle the source of bitmap, false otherwise.

open fun skew(src: Bitmap, kx: Float, ky: Float, px: Float, py: Float): Bitmap

Return the skewed bitmap.

Return

the skewed bitmap

Parameters

src

The source of bitmap.

kx

The skew factor of x.

ky

The skew factor of y.

px

The x coordinate of the pivot point.

py

The y coordinate of the pivot point.

open fun skew(src: Bitmap, kx: Float, ky: Float, px: Float, py: Float, recycle: Boolean): Bitmap

Return the skewed bitmap.

Return

the skewed bitmap

Parameters

src

The source of bitmap.

kx

The skew factor of x.

ky

The skew factor of y.

px

The x coordinate of the pivot point.

py

The y coordinate of the pivot point.

recycle

True to recycle the source of bitmap, false otherwise.