imageHeight property

int? imageHeight

Implementation

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

Implementation

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