
Sixty five tons of American pride! [?]
Añademe a tus favoritos!
Contacto
Post al azar
RSS
BUSCAR
Mapa de la web
el 0000-00-00 00:00:00 - Secciones: - Enlace permanente: 484function LeerJPG(n : string) : TBitmap;
Var
jpeg: TJPEGImage;
Begin
jpeg:= TJPEGImage.Create;
try
jpeg.LoadFromFile(n);
result:= TBitmap.Create;
try
result.Assign( jpeg );
finally
end;
finally
jpeg.free
end;
end;
procedure GrabarJPG(n : string; d : TBitmap);
Var
jpeg: TJPEGImage;
Begin
jpeg:= TJPEGImage.Create;
jpeg.Assign( d );
jpeg.savetofile(n);
jpeg.free
end;
Saiyine recommends the easiest way to earn money with your web: get paid just by having some links! Click this button to check it out.
