फ़ॉर्म सबमिट करने से पहले छवि का आकार बदलने के लिए, आपको 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 );