Brush
Defined in framework ScanditCaptureCore
- Brush
open class Brush : NSObject
Added in version 6.0.0
Brushes define how objects are drawn on screen and allow to change their fill and stroke color as well as the stroke width. They are, for example, used to change the styling of barcode locations, or other objects drawn on top of the video preview. Brushes are immutable. Once created none of the members can be modified.
- transparent
open class var transparent: Brush { get }
Added in version 6.1.0
Creates a new brush where both fill and stroke colors are set to fully transparent black. The stroke width is set to zero.
- init
init(fill fillColor: UIColor, stroke strokeColor: UIColor, strokeWidth: CGFloat)
Added in version 6.0.0
Creates a new brush with provided fill, stroke colors and stroke width.
- init
convenience init()
Added in version 6.0.0
Creates a new default brush. Both fill and stroke color are set to fully transparent black. The stroke width is set to zero.
- fillColor
open var fillColor: UIColor { get }
Added in version 6.0.0
The fill color used to draw the object.
- strokeColor
open var strokeColor: UIColor { get }
Added in version 6.0.0
The stroke color used to draw the object.