public void test_button_Click(object sender, EventArgs e)
        {
            OpenFileDialog ofd = new OpenFileDialog();

            if (ofd.ShowDialog() == DialogResult.OK)
            {
                pictureBox2.Image = new Bitmap(ofd.FileName);
            }
            JPEG = new compression(JPEG.bmp, (Bitmap)pictureBox2.Image);
            Resize(JPEG.width, JPEG.height);
        }
 public Form1()
 {
     InitializeComponent();
     JPEG = new compression((Bitmap)Image.FromFile(@"nomad1.jpg"), (Bitmap)Image.FromFile(@"nomad2.jpg"));
 }