ImageEn, unit iexBitmaps

TIEBitmap.FeatherAlphaEdges

TIEBitmap.FeatherAlphaEdges


Declaration

procedure FeatherAlphaEdges(FeatherDepth : Integer; Quick: Boolean = False);


Description

Applies a feathering effect to the image. Feathering softens the edges of an image by applying alpha transparency at a rate that is proportional to the distance to the edge (specifically, adding a gradient in the alpha channel).

FeatherDepth specifies the depth in pixels of the feather effect. The range is 0 to 255, with typical values of 2 to 5. If iFeatherDepth = 0 then the image is not feathered but a simple smoothing filter is applied to reduce the jagged edges of the image.
If Quick = False, then further quality smoothing is applied to the effect.

Note: Method has no effect if the image does not have an alpha channel


Example

// Feather the border of a JPEG image
iebmp.Read( 'D:\image.jpg' );
iebmp.AlphaChannel; // Add alpha channel to image
iebmp.Resize(1, 1, 1, 1, clWhite, 0); // Add an alpha border
iebmp.FeatherAlphaEdges(10);