Rectangular Viewfinder

Defined in framework ScanditCaptureCore

enum RectangularViewfinderStyle

Added in version 6.8.0

The style of the RectangularViewfinder.

square

Added in version 6.8.0

New style from version 6.8 onwards with square corners.

rounded

Added in version 6.8.0

New style from version 6.8 onwards with rounded corners.

jsonString
open var jsonString: String { get }

Added in version 6.8.0

Serialize the viewfinder style in a JSON string.

enum RectangularViewfinderLineStyle

Added in version 6.8.0

The style of the lines drawn as part of the RectangularViewfinder.

bold

Added in version 6.8.0

Draws lines with a width of 5 dips/points.

light

Added in version 6.8.0

Draws lines with a width of 3 dips/points.

jsonString
open var jsonString: String { get }

Added in version 6.8.0

Serialize the viewfinder line style in a JSON string.

RectangularViewfinder
open class RectangularViewfinder : NSObject, Viewfinder

Added in version 6.0.0

Rectangular viewfinder with an embedded Scandit logo. The rectangle is always centered on the point of interest of the view.

The rectangular viewfinder is displayed when the recognition is active and hidden when it is not.

To use this viewfinder, create a new instance and assign it to the overlay, e.g. the barcode capture overlay via the BarcodeCaptureOverlay.viewfinder property.

init
convenience init(style: RectangularViewfinderStyle, lineStyle: RectangularViewfinderLineStyle)

Added in version 6.8.0

Constructs a new rectangular viewfinder with the specified style and line style.

init
convenience init(style: RectangularViewfinderStyle)

Added in version 6.8.0

Constructs a new rectangular viewfinder with the specified style and RectangularViewfinderLineStyle.light.

init
init()

Added in version 6.0.0

Constructs a new rectangular viewfinder with RectangularViewfinderStyle.rounded and RectangularViewfinderLineStyle.light.

style
open var style: RectangularViewfinderStyle { get }

Added in version 6.8.0

The style of the viewfinder.

lineStyle
open var lineStyle: RectangularViewfinderLineStyle { get }

Added in version 6.8.0

The style of the viewfinder’s lines.

color
open var color: UIColor { get, set }

Added in version 6.0.0

The color used to draw the logo and viewfinder when the mode is enabled. The color is always used at full opacity, changing the alpha value has no effect.

disabledColor
open var disabledColor: UIColor { get, set }

Added in version 6.3.0

The color used to draw the logo and viewfinder when the mode is disabled. By default transparent.

dimming
open var dimming: CGFloat { get, set }

Added in version 6.8.0

The amount the area outside the viewfinder’s rectangle is dimmed by. Accepts values between 0 (no dimming) and 1 (fully blacked out).

disabledDimming
open var disabledDimming: CGFloat { get, set }

Added in version 6.10.0

The amount the area outside the viewfinder’s rectangle is dimmed by when the mode is disabled. Accepts values between 0 (no dimming) and 1 (fully blacked out).

animation
open var animation: RectangularViewfinderAnimation? { get, set }

Added in version 6.8.0

The animation used for the viewfinder, if any.

sizeWithUnitAndAspect
open var sizeWithUnitAndAspect: SizeWithUnitAndAspect { get }

Added in version 6.0.0

The size and sizing mode of the viewfinder.

setSize
open func setSize(_ size: SizeWithUnit) -> Void

Added in version 6.0.0

Sets the horizontal and vertical size of the viewfinder to the provided value. When the unit is relative (unit in either x or y is MeasureUnit.fraction) the size is computed relative to the view size minus the scan area margins.

setWidth
open func setWidth(_ width: FloatWithUnit, aspectRatio heightToWidthAspectRatio: CGFloat) -> Void

Added in version 6.0.0

Sets the width of the viewfinder and compute height automatically based on the provided height/width aspect ratio. When the unit is relative (MeasureUnit.fraction), the width is computed relative to the view size minus the scan area margins.

setHeight
open func setHeight(_ height: FloatWithUnit, aspectRatio widthToHeightAspectRatio: CGFloat) -> Void

Added in version 6.0.0

Sets the height of the viewfinder and compute width automatically based on the provided width/height aspect ratio. When the unit is relative (MeasureUnit.fraction), the height is computed relative to the view size minus the scan area margins.

setShorterDimension
open func setShorterDimension(_ fraction: CGFloat, aspectRatio: CGFloat) -> Void

Added in version 6.8.0

Sets the viewfinder size on the short side of the scan area as fraction of the scan area size. The size on the long side is calculated based on the provided short side/long side aspectRatio.