PdfImageInfo constructor

const PdfImageInfo({
  1. required int pageIndex,
  2. required PdfIndirectRef pageRef,
  3. required PdfIndirectRef imageRef,
  4. required int? width,
  5. required int? height,
  6. required int? bitsPerComponent,
  7. required String? colorSpace,
  8. required String? filter,
})

Implementation

const PdfImageInfo({
  required this.pageIndex,
  required this.pageRef,
  required this.imageRef,
  required this.width,
  required this.height,
  required this.bitsPerComponent,
  required this.colorSpace,
  required this.filter,
});