이미지 리사이징
getImageResizedWH([max width,max height],[image width,image height]); mw = max width mh = max height cw = image width ch = image height getImageResizedWH([100,100],[cw,ch]) 일 경우 가로 세로 모두 최대값에 영향을 받음 getImageResizedWH([100,0],[cw,ch]) 일 경우 가로만 최대값에 영향을 받음 getImageResizedWH([0,100],[cw,ch]) 일 경우 세로만 최대값에 영향을 받음 function getImageResizedWH(arrmx,arrcrnt) { mw = arrmx[0]; mh = typeof(arrmx[1]) == "un..