imageHeight property

int? get imageHeight

Implementation

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

Implementation

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