ImageImage constructor

ImageImage(
  1. Image _image, {
  2. double? dpi,
  3. PdfImageOrientation? orientation,
})

Implementation

ImageImage(
  this._image, {
  double? dpi,
  PdfImageOrientation? orientation,
}) : super(_image.width, _image.height,
          orientation ?? PdfImageOrientation.topLeft, dpi);