ImageGear23.Processing.Advanced Assembly > ImageGear.Processing.ImageClean Namespace > ImGearICBorderOptions Class > ImGearICBorderOptions Constructor : ImGearICBorderOptions Constructor(Int32,Int32,Int32,Int32,Int32,Int32) |
minLineWidthInBlock
in one border block.
minLineCountInBlock
number of lines with minLineWidthInBlock
width or wider will be removed from image.
'Declaration Public Function New( _ ByVal maxLeftBorderSize As Integer, _ ByVal maxRightBorderSize As Integer, _ ByVal maxTopBorderSize As Integer, _ ByVal maxBottomBorderSize As Integer, _ ByVal minLineCountInBlock As Integer, _ ByVal minLineWidthInBlock As Integer _ )
'Usage Dim maxLeftBorderSize As Integer Dim maxRightBorderSize As Integer Dim maxTopBorderSize As Integer Dim maxBottomBorderSize As Integer Dim minLineCountInBlock As Integer Dim minLineWidthInBlock As Integer Dim instance As New ImGearICBorderOptions(maxLeftBorderSize, maxRightBorderSize, maxTopBorderSize, maxBottomBorderSize, minLineCountInBlock, minLineWidthInBlock)
public ImGearICBorderOptions( int maxLeftBorderSize, int maxRightBorderSize, int maxTopBorderSize, int maxBottomBorderSize, int minLineCountInBlock, int minLineWidthInBlock )
public: ImGearICBorderOptions( int maxLeftBorderSize, int maxRightBorderSize, int maxTopBorderSize, int maxBottomBorderSize, int minLineCountInBlock, int minLineWidthInBlock )
public: ImGearICBorderOptions( int maxLeftBorderSize, int maxRightBorderSize, int maxTopBorderSize, int maxBottomBorderSize, int minLineCountInBlock, int minLineWidthInBlock )
minLineWidthInBlock
in one border block.minLineCountInBlock
number of lines with minLineWidthInBlock
width or wider will be removed from image.ImGearICBorderOptions borderOptions = new ImGearICBorderOptions(100, 100, 100, 100, 10, 10);
ImGearIC.CleanBorders(igRasterPage, borderOptions);
Dim borderOptions As ImGearICBorderOptions borderOptions = New ImGearICBorderOptions(100, 100, 100, 100, 10, 10) ImGearIC.CleanBorders(igRasterPage, borderOptions)