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();
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
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.