Sé que esto ya está contestada, pero en base a Hans passant a responder el código resultante es como la siguiente:
public class Recolor
{
public static Bitmap Tint(string filePath, Color c)
{
// load from file
Image original = Image.FromFile(filePath);
original = new Bitmap(original);
//get a graphics object from the new image
Graphics g = Graphics.FromImage(original);
//create the ColorMatrix
ColorMatrix colorMatrix = new ColorMatrix(
new float[][]{
new float[] {0, 0, 0, 0, 0},
new float[] {0, 0, 0, 0, 0},
new float[] {0, 0, 0, 0, 0},
new float[] {0, 0, 0, 1, 0},
new float[] {c.R/255.0f,
c.G/255.0f,
c.B/255.0f,
0, 1}
});
//create some image attributes
ImageAttributes attributes = new ImageAttributes();
//set the color matrix attribute
attributes.SetColorMatrix(colorMatrix);
//draw the original image on the new image
//using the color matrix
g.DrawImage(original,
new Rectangle(0, 0, original.Width, original.Height),
0, 0, original.Width, original.Height,
GraphicsUnit.Pixel, attributes);
//dispose the Graphics object
g.Dispose();
//return a bitmap
return (Bitmap)original;
}
}
descargar una demo de trabajo aquí: http://benpowell.org/change-the-color-of-a-transparent-png-image-icon-on-the-fly-using-asp-net-mvc/
Esto no establece el color de cada píxel a un color específico, ¿o sí? Estoy bastante seguro de que se incrementará cada canal de color por R, G y B. Quiero que la imagen completa sea de un color sólido, conservando solo la transparencia/alfa de cada píxel. – Charles
Los ceros en la diagonal producen negro, los números de abajo se agregan. –
Ah-ha. No estaba pensando todo el tiempo. Apuesto a que debería funcionar perfectamente. Lo verificaré y estaré de regreso contigo. – Charles