ImageGear for .NET
ImGearICBorderOptions Constructor(Int32,Int32,Int32,Int32,Int32,Int32)
See Also  Example Send Feedback
ImageGear21.Processing.Advanced Assembly > ImageGear.Processing.ImageClean Namespace > ImGearICBorderOptions Class > ImGearICBorderOptions Constructor : ImGearICBorderOptions Constructor(Int32,Int32,Int32,Int32,Int32,Int32)




maxLeftBorderSize
Max size of the left border.
maxRightBorderSize
Max size of the right border.
maxTopBorderSize
Max size of the top border.
maxBottomBorderSize
Max size of bottom border.
minLineCountInBlock
Min number of lines with width not less than minLineWidthInBlock in one border block.
minLineWidthInBlock
Min width of lines in one border block. Those blocks that have not less than minLineCountInBlock number of lines with minLineWidthInBlock width or wider will be removed from image.

Glossary Item Box

Initializes a new instance of the ImGearICBorderOptions class.

Syntax

 
Visual Basic
C#
Managed Extensions for C++
C++/CLI
 
 

Parameters

maxLeftBorderSize
Max size of the left border.
maxRightBorderSize
Max size of the right border.
maxTopBorderSize
Max size of the top border.
maxBottomBorderSize
Max size of bottom border.
minLineCountInBlock
Min number of lines with width not less than minLineWidthInBlock in one border block.
minLineWidthInBlock
Min width of lines in one border block. Those blocks that have not less than minLineCountInBlock number of lines with minLineWidthInBlock width or wider will be removed from image.

Remarks

This constructor creates and initializes an instance of ImGearICBorderOptions class.

Example

C#Copy Code
ImGearICBorderOptions borderOptions = new ImGearICBorderOptions(100, 100, 100, 100, 10, 10);
ImGearIC.CleanBorders(igRasterPage, borderOptions);
Visual BasicCopy Code
Dim borderOptions As ImGearICBorderOptions
borderOptions = New ImGearICBorderOptions(100, 100, 100, 100, 10, 10)
ImGearIC.CleanBorders(igRasterPage, borderOptions)

See Also

©2013. Accusoft Corporation. All Rights Reserved.