Guest User

Untitled

a guest
Mar 24th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. X = the X of the image
  2. Y = the Y of the image
  3. A = the X i want image to resize to
  4. B = the Y i want image to resize to
  5.  
  6. x_diff = X / A
  7. y_diff = Y / B
  8.  
  9. new xmin = xmin * x_diff
  10. new ymin = ymin * y_diff
  11. new xmax = xmax * x_diff
  12. new ymax = ymax * y_diff
Add Comment
Please, Sign In to add comment