Jugando con iconos en Delphi

El primer problema que nos encontraremos al utilizar el método ExtractAssociatedIcon es que al cargar el icono y mostrarlo en el TImage nos lo carga siempre con el fondo blanco, y aquí tenemos nuestro primer problema. ¿Cómo lo quito?.
Bien, la solución es bastante simple pero no es tan fácil como indicar el color transparente y ya está, porqué no funciona. Lo que tenemos que hacer es marcar el color que nosotros queremos hacer transparente con otro color e indicar que la imagen tiene un color transparente. De esta manera mientras nosotros vayamos pintando el color de fondo, el TImage lo irá transformando a transparente.
El primer resultado que obtendremos es este:



procedure TForm1.LoadIconClick(Sender: TObject);
procedure SetTransparentColor(image: TImage);
var
i, j: integer;
begin
image.AutoSize := true;
image.Transparent := true;
for i := 0 to image.Width - 1 do
for j := 0 to image.Height - 1 do
begin
if image.Canvas.Pixels[i, j] = clWhite then
image.Canvas.Pixels[i, j] := clred;
end;
end;
var
IconIndex: word;
Buffer: array[0..2048] of char;
IconHandle: HIcon;
begin
StrCopy(@Buffer, 'C:\Python26\python.exe');
IconIndex := 0;
IconHandle := ExtractAssociatedIcon(HInstance, Buffer, IconIndex);
if IconHandle <> 0 then
Icon.Handle := IconHandle;
DrawIcon(Image32.Canvas.Handle, 0, 0, IconHandle);
DrawIconEx(Image16.Canvas.Handle, 0, 0, IconHandle, 16, 16, 0, 0, DI_NORMAL);
SetTransparentColor(image32);
SetTransparentColor(image16);
end;
espero que os sirva de ayuda.
- Enlaces de interés:
Hey there would you mind letting me know which web host you're working
ReplyDeletewith? I've loaded your blog in 3 different browsers and I must say this blog loads a lot quicker then most.
Can you recommend a good web hosting provider at a fair price?
Thank you, I appreciate it!
Here is my website-> download video from youtube