ivory property
PdfPen
get
ivory
Gets the Ivory default pen.
//Create a new PDF document.
PdfDocument doc = PdfDocument();
//Draw rectangle.
doc.pages
.add()
.graphics
.drawRectangle(pen: PdfPens.ivory,
bounds: Rect.fromLTWH(0, 0, 200, 100));
//Save the document.
List<int> bytes = doc.save();
//Dispose the document.
doc.dispose();
Implementation
static PdfPen get ivory {
if (_pens.containsKey(KnownColor.ivory)) {
return _pens[KnownColor.ivory]!;
} else {
return _getPen(KnownColor.ivory);
}
}