openfiledialog を使用して選択した画像の領域を選択しようとしています 選択しようとしている領域は、x、y 座標 5,5 から 16x16 です 選択したら、16x16 の画像を座標 0 の別の pictureBox に描画します,0
これは私が持っているコードですが、元の画像の正しい部分を選択することができません。なぜ機能しないのかについての提案はありますか?
DialogResult result = openFileDialog1.ShowDialog();
if (result == DialogResult.OK) // Test result.
{
Image origImage = Image.FromFile(openFileDialog1.FileName);
pictureBoxSkin.Image = origImage;
lblOriginalFilename.Text = openFileDialog1.SafeFileName;
System.Drawing.Bitmap bmp = new Bitmap(16, 16);
Graphics g3 = Graphics.FromImage(bmp);
g3.DrawImageUnscaled(origImage, 0, 0, 16, 16);
Graphics g2 = pictureBoxNew.CreateGraphics();
g2.DrawImageUnscaled(bmp, 0, 0, 16, 16);
}