I have 2 questions:
- How to get the display area of a picture inside a picture box with a scale factor?
- Example:
- I have an image (1000 x 1000), my task is "get an area (600 x 600) of that image".
- I create a form, then a panel with a picture box inside, picture box size is 400 x 400, make some code to allow user to drag image inside the box
- I load the image into the picture box. Since the desired area is 600 x 600, but my box is 400 x 400 only, so I scale the image with the 0.67 factor.
- User will select the desired area by dragging the image arround.
- How can I get that area (from the original image)?
- Example:
- And if I allow user to zoom in/out in that picture box, how can I deal with it?
Because the image is scaled in
picbox
, you can not take the area directly from picbox. The trick is toun-scale
the rectangle that the user select and tranform it to the original one.You need two images:
when your form loads:
When the user select a rectangle, lets call it
rectangleSelect
, onpictureBox1
you need to transformx, y, width, height
of rectangle to the original one, the 600x600. You need some simple math:Hope this helps a little!