Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

HTML5 양식을 제출하기 전에 이미지 크기 조정

<시간/>

양식을 제출하기 전에 이미지 크기를 조정하려면 drawImage() 메서드를 사용해야 합니다.

원본 이미지의 크기를 조정하고 크기가 조정된 버전을 캔버스에 [0,0]

으로 그립니다.
context.drawImage( img, 0,0,img.width,img.height, 0,0,myWidth,UseHeight );

위에서 다음을 확인했습니다.

여기,

var myWidth = Math.floor( img.width * Scale );
var myHeight = Math.floor( img.height * Scale );

그리고,

var x = Math.floor( ( world.width - myWidth) / 2 );
var y = Math.floor( ( world.height - myHeight) / 2 );