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