March 23, 200719 yr You said you where using paint in your last topic so... Image > attributes write down the height and width of the image then press cancel Image > stretch/skew since there is no feature that allows you to resize it to a specific size then you can do this: let H1 = original height let W1 = original width let H2 = wanted height let W2 = wanted width Let H3 = percentage to enter of height Let W3 = percentage to enter of width H3 = (H2 / H1) * 100% W3 = (H2 / H1) * 100% for example: .......... .W . ........ H 1 | ..... 500 ..... 700 2 | ..... 500 ..... 400 3 | .....100% ..... 57.14%
Create an account or sign in to comment