'Declaration
Public Function FxGaussian( _ ByVal ImageID As Integer, _ ByVal KernelSize As Integer _ ) As GdPictureStatus
public GdPictureStatus FxGaussian( int ImageID, int KernelSize )
public function FxGaussian( ImageID: Integer; KernelSize: Integer ): GdPictureStatus;
public function FxGaussian( ImageID : int, KernelSize : int ) : GdPictureStatus;
public: GdPictureStatus FxGaussian( int ImageID, int KernelSize )
public: GdPictureStatus FxGaussian( int ImageID, int KernelSize )
Parameters
- ImageID
- GdPicture image identifier.
- KernelSize
- The size of the square kernel to use. Should be a odd value. For example, a size of 3 will involve 3 * 3 pixels in each pass. The larger the value the more blur you get. The range is larger or equal than 3, and less than the Image's Smaller Dimension (Width, Height) divided by 2. Suggested value is 3 for a [96-120] DPI image and 5 for a [200-250] dpi bitmap. If the value supplied is our of range the method will return GdPictureStatus.InvalidParameter.
Return Value
A member of the GdPictureStatus enumeration.