Como: Desenhar imagens com transparência
O .NET Compact Framework suporta transparência, mas somente com uma cor de transparência.The SetColorKey(Color, Color) método deve ter a mesma cor especificada para o intervalo baixa e cor alta.
Exemplo
Este exemplo cria um Bitmap um retângulo com vermelho e preto projeta e demonstra duas técnicas para definir a transparência:
Use o SetColorKey(Color, Color) método baseado em um pixel na imagem. Este exemplo define a transparência usando o pixel do canto superior esquerdo da imagem.Como este pixel é preto, todos os pixels originalmente pretos serão transparentes.
Use o SetColorKey(Color, Color) método com uma configuração de cor explícita. Este exemplo o define para vermelho, para que todos os pixels originalmente vermelhos se tornem transparentes.
Para demonstrar, execute o aplicativo primeiro com ambas técnicas de transparência comentadas para ver como a imagem aparece com nenhum conjunto transparência.Então desfaça a anotação do código para qualquer das técnicas de transparência.
' The .NET Compact Framework supports transparency,
' but with only one transparency color.
' The SetColorKey method must have the same color
' specified for the low color and high color range.
' Note that you must uncomment lines of code
' as indicated for the desired transparency effect.
Protected Overrides Sub OnPaint(ByVal e As PaintEventArgs)
' Create a red and black bitmap to demonstrate transparency.
Dim bmp As New Bitmap(75, 75)
Dim g As Graphics = Graphics.FromImage(bmp)
g.FillEllipse(New SolidBrush(Color.Red), 0, 0, bmp.Width, bmp.Width)
g.DrawLine(New Pen(Color.Black), 0, 0, bmp.Width, bmp.Width)
g.DrawLine(New Pen(Color.Black), bmp.Width, 0, 0, bmp.Width)
g.Dispose()
Dim attr As New ImageAttributes
' Set the transparency color key based on the upper-left pixel
' of the image.
' Uncomment the following line to make all black pixels transparent:
' attr.SetColorKey(bmp.GetPixel(0, 0), bmp.GetPixel(0, 0))
' Set the transparency color key based on a specified value.
' Uncomment the following line to make all red pixels transparent:
' attr.SetColorKey(Color.Red, Color.Red)
' Draw the image using the image attributes.
Dim dstRect As New Rectangle(0, 0, bmp.Width, bmp.Height)
e.Graphics.DrawImage(bmp, dstRect, 0, 0, bmp.Width, bmp.Height, _
GraphicsUnit.Pixel, attr)
End Sub
// The .NET Compact Framework supports transparency,
// but with only one transparency color.
// The SetColorKey method must have the same color
// specified for the low color and high color range.
// Note that you must uncomment lines of code
// as indicated for the desired transparency effect.
protected override void OnPaint(PaintEventArgs e)
{
// Create a red and black bitmap to demonstrate transparency.
Bitmap bmp = new Bitmap(75,75);
Graphics g = Graphics.FromImage(bmp);
g.FillEllipse(new SolidBrush(Color.Red), 0, 0, bmp.Width, bmp.Width);
g.DrawLine(new Pen(Color.Black), 0, 0, bmp.Width, bmp.Width);
g.DrawLine(new Pen(Color.Black), bmp.Width, 0, 0, bmp.Width);
g.Dispose();
ImageAttributes attr = new ImageAttributes();
// Set the transparency color key based on the upper-left pixel
// of the image.
// Uncomment the following line to make all black pixels transparent:
// attr.SetColorKey(bmp.GetPixel(0, 0), bmp.GetPixel(0, 0));
// Set the transparency color key based on a specified value.
// Uncomment the following line to make all red pixels transparent:
// attr.SetColorKey(Color.Red, Color.Red);
// Draw the image using the image attributes.
Rectangle dstRect = new Rectangle(0, 0, bmp.Width, bmp.Height);
e.Graphics.DrawImage(bmp, dstRect, 0, 0, bmp.Width, bmp.Height,
GraphicsUnit.Pixel, attr);
}
Compilando o código
Este exemplo requer referências aos seguintes namespaces:
Programação robusta
Observe que o Graphics objeto que é usado para criar o bitmap está explicitamente determinado. The Graphics objeto retornado pela Graphics propriedade das PaintEventArgs objeto é destruído pelo coletor de lixo e não precisará ser explicitamente destruído.