SetCharWidthBoundingBox

SetCharWidthBoundingBox

Overview

SetCharWidthBoundingBox is a class in Aspose.Pdf FOSS for Java. Inherits from: Operator.

Set char width and bounding box operator for Type 3 fonts (d1).

Properties

NameTypeAccessDescription
wxdoubleReadReturns the horizontal displacement component.
wydoubleReadReturns the vertical displacement component.
llxdoubleReadReturns the lower-left x of the bounding box.
llydoubleReadReturns the lower-left y of the bounding box.
urxdoubleReadReturns the upper-right x of the bounding box.
urydoubleReadReturns the upper-right y of the bounding box.
nameStringReadReturns the operator keyword.
indexintReadReturns the index of this operator within its parent {@link OperatorCollection},
or -1 if not set.
operandsList<COSBase>ReadReturns the operands as an unmodifiable list.

Methods

SignatureDescription
SetCharWidthBoundingBox(wx: double, wy: double, llx: double, lly: double, urx: double, ury: double)Creates a SetCharWidthBoundingBox (d1) operator with the specified values.
SetCharWidthBoundingBox(operands: List<COSBase>)Creates a SetCharWidthBoundingBox (d1) operator from parsed operands.
getWx()doubleReturns the horizontal displacement component.
getWy()doubleReturns the vertical displacement component.
getLlx()doubleReturns the lower-left x of the bounding box.
getLly()doubleReturns the lower-left y of the bounding box.
getUrx()doubleReturns the upper-right x of the bounding box.
getUry()doubleReturns the upper-right y of the bounding box.
Operator(name: String, operands: List<COSBase>)Creates an operator with the given name and operands.
getName()StringReturns the operator keyword.
getIndex()intReturns the index of this operator within its parent {@link OperatorCollection},
or -1 if not set.
setIndex(index: int)Sets the index of this operator within its parent collection.
getOperands()List<COSBase>Returns the operands as an unmodifiable list.
toString()StringReturns a string representation of this operator in content stream syntax.
equals(o: Object)boolean
hashCode()int

See Also