Beispiel #1
0
        public void TextBoxGiris()
        {
            String boyutx;
            String boyuty;
            int    boyutx1, boyuty1;

            boyutx = genislik.Text;
            boyuty = yukseklik.Text;

            boyutx1 = Convert.ToInt32(boyutx.ToString());
            boyuty1 = Convert.ToInt32(boyuty.ToString());

            Bitmap   image = new Bitmap(pictureBox1.Image);
            Metodlar olcek = new Metodlar();

            pictureBox1.Image = olcek.Olceklendir(image, boyutx1, boyuty1);
        }
Beispiel #2
0
        private void Olceklendir_Click(object sender, EventArgs e)
        {
            text.Visible      = false;
            genislik.Visible  = false;
            yukseklik.Visible = false;
            String boyutx;
            String boyuty;
            int    boyutx1, boyuty1;

            boyutx = genislik.Text;
            boyuty = yukseklik.Text;

            boyutx1 = Convert.ToInt32(boyutx.ToString());
            boyuty1 = Convert.ToInt32(boyuty.ToString());

            Bitmap   image = new Bitmap(pictureBox1.Image);
            Metodlar olcek = new Metodlar();

            geri = pictureBox1.Image;
            RGBiHistogram.Image = olcek.Olceklendir(image, boyutx1, boyuty1);
        }