Thanks Pieter. Is it something I can change manually via code whilst I'm waiting for an update to be released please? Was looking to get an update to my software out today.
We are currently reuploading so 10.3.0.2 should be out soon, for a manual fix (add the following line to AdvUtils.pas, in the GetImageType function in red)
(DataType: '.jpg'; Length: 4; Header: (255,216,255,224)),
(DataType: '.jpg'; Length: 4; Header: (255,216,255,225)),
(DataType: '.unknown'; Length: 4; Header: (0,0,1,0)),
(DataType: '.empty'; Length: 4; Header: (0,0,0,0))
);
begin
Result := '';
LOldPos := AData.Position;
try
AData.Position := 0;
if AData.Read(LBuffer[0], MaxImageDataLength) = MaxImageDataLength then
begin
for I := Low(ImageData) to High(ImageData) do
begin