HTML Canvas 图像
Canvas - ਚਿੱਤਰ
ਕੈਂਵਾਸ 'ਤੇ ਚਿੱਤਰ ਦਰਸਾਉਣ ਲਈ ਨਿਮਨ ਤਰੀਕੇ ਵਰਤੋਂ ਕਰੋ:
- drawImage(image,x,y)
ਉਦਾਹਰਣ

JavaScript:
window.onload = function() { const canvas = document.getElementById("myCanvas"); const ctx = canvas.getContext("2d"); const img = document.getElementById("tulip"); ctx.drawImage(img, 10, 10); ਮੰਗਣਾ ਹੈ ਕੀ?