We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents af772e2 + 19d2976 commit 7b9140aCopy full SHA for 7b9140a
piexif.js
@@ -594,6 +594,15 @@ SOFTWARE.
594
} else {
595
data = value.slice(0, length);
596
}
597
+ } else if (t == 9) { // SLONG
598
+ if (length > 1) {
599
+ pointer = unpack(this.endian_mark + "L", value)[0];
600
+ data = unpack(this.endian_mark + nStr("l", length),
601
+ this.tiftag.slice(pointer, pointer + length * 4));
602
+ } else {
603
604
+ value);
605
+ }
606
} else if (t == 10) { // SRATIONAL
607
pointer = unpack(this.endian_mark + "L", value)[0];
608
if (length > 1) {
0 commit comments