No es tan difícil encriptar una imagen, puedes hacer un programita que encripte las 200 en un par de segundos. Aprovechando un poco de código que tenia por ahí te dejo una función para encriptar Bmps, no es una maravilla criptográfica pero lo suficiente para desanimar a los curiosos.
Código Delphi
[-]
type
Triple = array[1..3]of Byte;
procedure Cifrar(Imagen: TPicture; Clave: Longint);
var
Bitmap: TBitmap;
P: ^Triple;
i, j: Integer;
begin
RandSeed:= Clave;
if not (Imagen.Graphic is TBitmap) then
begin
Bitmap:= TBitmap.Create;
try
Bitmap.Width:= Imagen.Width;
Bitmap.Height:= Imagen.Height;
Bitmap.Canvas.Draw(0,0,Imagen.Graphic);
Imagen.Assign(Bitmap);
finally
Bitmap.Free;
end;
end;
Imagen.Bitmap.PixelFormat:= pf24bit;
for j:= 0 to Imagen.Bitmap.Height - 1 do
begin
P:= Imagen.Bitmap.ScanLine[j];
for i:= 0 to Imagen.Bitmap.Width - 1 do
begin
P^[1]:= P^[1] xor Byte(Random(256));
P^[2]:= P^[2] xor Byte(Random(256));;
P^[3]:= P^[3] xor Byte(Random(256));
inc(P);
end;
end;
end;
También te dejo el código en un zip listo para usar para que le eches un vistazo