You've already forked lazarus-ccr
fpexif: minor changes
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6092 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -452,6 +452,11 @@ begin
|
|||||||
exit;
|
exit;
|
||||||
|
|
||||||
while p < streamsize do begin
|
while p < streamsize do begin
|
||||||
|
// The basic structure of the jpeg segments is
|
||||||
|
// $FF ..... identifier (sometimes repeated)
|
||||||
|
// marker .. segment identifier (1 byte)
|
||||||
|
// size .... size of the segment in bytes (2 bytes), including size field
|
||||||
|
// data .... data of the segment, (size)-2 bytes.
|
||||||
repeat
|
repeat
|
||||||
marker := ReadByte(AStream);
|
marker := ReadByte(AStream);
|
||||||
until marker <> $FF;
|
until marker <> $FF;
|
||||||
|
Reference in New Issue
Block a user