PsdChannel.read constructor

PsdChannel.read(
  1. InputBuffer input,
  2. int id,
  3. int width,
  4. int height,
  5. int? bitDepth,
  6. int compression,
  7. Uint16List? lineLengths,
  8. int planeNumber,
)

Implementation

PsdChannel.read(
    InputBuffer input,
    this.id,
    int width,
    int height,
    int? bitDepth,
    int compression,
    Uint16List? lineLengths,
    int planeNumber) {
  readPlane(
      input, width, height, bitDepth, compression, lineLengths, planeNumber);
}