Inline images are structured like this:
BI
/L 123456
ID
(binary)
EI
If we encounter an ID marker, we continue parsing in inlineImageMode, skipping any chars until we encounter the marker EI.
This is inefficient, especially when there is a lot of binary data. Instead, we can skip to the end of the binary data by using the L entry.
Inline images are structured like this:
If we encounter an
IDmarker, we continue parsing in inlineImageMode, skipping any chars until we encounter the markerEI.This is inefficient, especially when there is a lot of binary data. Instead, we can skip to the end of the binary data by using the
Lentry.