- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
for (int y = 0; y < bmp.Height; y++)
{
for (int x = 0; x < bmp.Width; x++)
{
Color col = bmp.GetPixel(x, y);
col = Color.FromArgb((col.R + col.G + col.B) / 3,
(col.R + col.G + col.B) / 3,
(col.R + col.G + col.B) / 3);
int rValue = int.Parse(col.R.ToString());
html.Append(getGrayShade(rValue));
if (x == bmp.Width - 1)
html.Append("<br/&rt");
}
}
TarasB 18.10.2011 17:16 # +5
Не соотносит рисунок букв и текстуру изображения.
> int rValue = int.Parse(col.R.ToString());
Это чё за
bugmenot 18.10.2011 17:30 # 0
krypt 18.10.2011 17:57 # 0
bugmenot 18.10.2011 18:22 # +4
Lure Of Chaos 18.10.2011 19:46 # 0
bugmenot 18.10.2011 20:20 # +3
absolut 18.10.2011 21:15 # +3
SmackMyBitchUp 18.10.2011 21:18 # +7
acula98 24.08.2021 23:24 # 0