Speichere das JPG in einer TBitmap und überprüfe jeden Pixel.
Geht nur, wenn die Bilder gleich groß sind:
Delphi-Quellcode:
for i:=0 to JPG1.Width do
for j:=0 to JPG1.Height do
If JPG1.Canvas.Pixels[i,j]<>JPG2.Canvas.Pixels[i,j] Then
JPG3.Canvas.Pixels[i,j]:=JPG2.Canvas.Pixels[i,j];
Ich hoffe das ist das, was du meinst.
Grüße Benjamin