GdPicture.NET.14
GdPicture14 Namespace / GdPictureImaging Class / CropWhiteBorders Method / CropWhiteBorders(Int32,Single) Method
GdPicture image identifier.
Confidence threshold in percentage. Default value is 99.
Example





In This Topic
CropWhiteBorders(Int32,Single) Method
In This Topic
Detects and removes margins consisting of white color around a GdPicture image. It has a Confidence Parameter where if the lines and borders detection confidence exceeds this value they will be removed, and left as they are if the confidence in detecting them is less than the Confidence Parameter Value.
Syntax
'Declaration
 
Public Overloads Function CropWhiteBorders( _
   ByVal ImageID As Integer, _
   ByVal Confidence As Single _
) As GdPictureStatus
public GdPictureStatus CropWhiteBorders( 
   int ImageID,
   float Confidence
)
public function CropWhiteBorders( 
    ImageID: Integer;
    Confidence: Single
): GdPictureStatus; 
public function CropWhiteBorders( 
   ImageID : int,
   Confidence : float
) : GdPictureStatus;
public: GdPictureStatus CropWhiteBorders( 
   int ImageID,
   float Confidence
) 
public:
GdPictureStatus CropWhiteBorders( 
   int ImageID,
   float Confidence
) 

Parameters

ImageID
GdPicture image identifier.
Confidence
Confidence threshold in percentage. Default value is 99.

Return Value

A member of the GdPictureStatus enumeration.
Remarks
This method or an overload of it is used in the "Image Processing" Demo.

This method requires the Image Documents component to run.

This method requires the Image Documents component to run.

Example
Removing the white margins from a jpeg image.
using (GdPictureImaging gdpictureImaging = new GdPictureImaging())
{
    // LoadInMemory parameter is set to true in order to be able to update the input file.
    int imageID = gdpictureImaging.CreateGdPictureImageFromFile("image.jpg", true);
 
    // Detect and remove the white margins using the custom confidence level.
    gdpictureImaging.CropWhiteBorders(imageID, 99);
    
    gdpictureImaging.SaveAsJPEG(imageID, "image.jpg", 75);
    gdpictureImaging.ReleaseGdPictureImage(imageID);
}
See Also