This commit is contained in:
csh 2023-11-15 10:41:17 +08:00
parent ee7b7164ce
commit de19e2be1b
2 changed files with 8 additions and 1 deletions

View File

@ -71,12 +71,13 @@ Type TSImage = Class
Begin
des1 := 0xff;
des2 := 0xc0;
des3 := 0xc2;
flag := 1;
while flag do
begin
stringObj_.Read(byte1, 1);
stringObj_.Read(byte2, 1);
if byte1 = des1 and byte2 = des2 then flag := 0;
if byte1 = des1 and (byte2 = des2 or byte2 = des3) then flag := 0;
end
if flag then return array(0, 0);
stringObj_.Read(tmp, 3);

View File

@ -1,5 +1,11 @@
# 更新日志
## 2023-11-15
### V1.5.1
1. 支持识别图片中含有`0xffc2`段的jpg格式的大小
## 2023-11-14
### V1.5.0