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