I'm drawing with java swing and bufferedimage on the screen.
So the coordinates that I draw with the mouse are added to a buffered image as lines/points.
Now all the displayed items on screen in the application are standard scaled (down)
so when I've finished writing and the image containing the drawing is ready, its scaled down by the application so it looks smaller. But I want to display it at original drawing size
. How can I do this. I want to keep the scaling mechanism intact, because it's good to use when resizing the window (it's used for that).
So I was thinking I want to scale the drawing image up in a size so that it will be displayed at 100% original size when it's scaled down with a (known) percentage.
What's the formula for this? It also has to still work when the screen/drawing area is resized and therefore the scale changes. Not that good in math so I need some help.