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] = ExifShortValue(value);
  }
}