imageWidth property

int? imageWidth

Implementation

int? get imageWidth => data[0x0100]?.toInt();
void imageWidth=(int? value)

Implementation

set imageWidth(int? value) {
  if (value == null) {
    data.remove(0x0100);
  } else {
    data[0x0100] = IfdValueShort(value);
  }
}