Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
長方形の選択範囲を描いた画像付きのピクチャボックスがあります。画像の選択した部分を別のピクチャボックスに取得したい。どうすればそれを手に入れることができますか?助けてください。
Rectangle rectangle次に作成する選択の座標を使用します。
Rectangle rectangle
Bitmap sourceBitmap = new Bitmap(pictureBoxImage); Bitmap croppedBitmap = sourceBitmap.Clone(rectangle, sourceBitmap.PixelFormat);
その後croppedBitmap、別のピクチャボックスで使用できます。未使用の画像を廃棄することを忘れないでください。それで全部です。
croppedBitmap