15 Kasım 2013 Cuma

C# da Resmi Siyah Beyaz Yapma Programı

c#
c#

Kodları:





namespace WindowsFormsApplication7
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
string dosyayolu;
Bitmap bmp;
private void button1_Click(object sender, EventArgs e) //resim seç butonu
{

if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
dosyayolu = openFileDialog1.FileName;
bmp = new Bitmap(dosyayolu);
pictureBox1.Image = bmp;
label1.Visible = true;
}
}

private void button2_Click(object sender, EventArgs e) // siyah beyaz değiştirme butonu
{
for (int y = 0; y < bmp.Height; y++)
{
for (int x = 0; x < bmp.Width; x++)
{
Color eski = bmp.GetPixel(x, y);
int ortalama = (eski.R + eski.G + eski.B) / 3;
Color yeni = Color.FromArgb(ortalama, ortalama, ortalama);
bmp.SetPixel(x, y, yeni);
}
}
pictureBox2.Image = bmp;
label2.Visible = true;
}
}
}

0 yorum :

Yorum Gönder