PdfColorSpace enum

Defines set of color spaces.

//Creates a new PDF document.
PdfDocument doc = PdfDocument();
//Create PDF graphics for the page
doc.pages.add().graphics
  ..colorSpace = PdfColorSpace.grayScale
  ..drawRectangle(
      brush: PdfBrushes.red, bounds: Rect.fromLTWH(0, 0, 515, 762));
//Saves the document.
List<int> bytes = doc.save();
//Dispose the document.
doc.dispose();
Inheritance

Constructors

PdfColorSpace()
const

Values

rgb → const PdfColorSpace

RGB color space.

cmyk → const PdfColorSpace

CMYK color space.

grayScale → const PdfColorSpace

GrayScale color space.

indexed → const PdfColorSpace

Indexed color space.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<PdfColorSpace>
A constant List of the values in this enum, in order of their declaration.