PdfaColorProfile constructor

PdfaColorProfile(
  1. PdfDocument pdfDocument,
  2. Uint8List icc
)

Implementation

PdfaColorProfile(
  PdfDocument pdfDocument,
  this.icc,
) : super(
        pdfDocument,
        params: PdfDictStream(
          compress: false,
          encrypt: false,
        ),
      ) {
  pdfDocument.catalog.colorProfile = this;
}