Guest User

Untitled

a guest
Jun 25th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. img = document.getElementById("edit-photo-frame");
  2.  
  3. var x=parseInt(img.width);
  4. var y=parseInt(img.height);
  5. if (x>maxWidth) {
  6. y*=maxWidth/x;
  7. x=maxWidth;
  8. }
  9. if (y>maxHeight) {
  10. x*=maxHeight/y;
  11. y=maxHeight;
  12. }
  13. img.style.display=(x<1 || y<1)?"none":"";
  14. img.src=evt.target.result;
  15. img.width=x;
  16. img.height=y;
  17. }
Add Comment
Please, Sign In to add comment