How do you draw an image at coordinates (200, 200) on the canvas with dimensions 300x200 pixels using drawImage?
A). drawImage(img, 200, 200, 300, 200)
B). drawImage(img, 0, 0, 300, 200)
C). drawImage(img, 0, 0, img.width / 2, img.height / 2)
D). drawImage(img, 100, 100, 300, 200)
How do you draw a cropped portion of an image using drawImage?
A). drawImage(img, 50, 50, 100, 100, 0, 0, 100, 100)
B). drawImage(img, 0, 0, 100, 100)
C). drawImage(img, 0, 0, img.width, img.height)
D). drawImage(img, 100, 100)
Which method is used to load an image in HTML5 canvas?
A). loadImage()
B). createImage()
C). Image()
D). new Image()
Which parameter of the drawImage method specifies the image source?
A). img
B). src
C). imageSource
D). source
What does the src attribute of an image element specify in HTML?
A). Source of the image
B). Size of the image
C). Type of the image
D). Width of the image
What does the onload event handler ensure in HTML5 canvas?
A). The canvas is fully loaded
B). The image is fully loaded
C). The canvas is ready
D). The browser is open
How do you draw an image at coordinates (50, 50) with dimensions 150x100 pixels on the canvas?
A). drawImage(img, 50, 50, 150, 100)
B). drawImage(img, 0, 0, 150, 100)
C). drawImage(img, 0, 0, img.width / 2, img.height / 2)
D). drawImage(img, 100, 100, 150, 100)
What does the onload event ensure before drawing an image on the canvas?
A). The canvas is ready
B). The image is fully loaded
C). The browser is open
D). The canvas size is set
Which parameter of the drawImage method specifies the height of the image to be drawn on the canvas?
A). img.height
B). height
C). img.height / 2
D). height / 2
How do you display an entire image on the canvas using drawImage?
A). drawImage(img, 0, 0)
B). drawImage(img, 100, 100)
C). drawImage(img, 0, 0, img.width, img.height)
D). drawImage(img, img.width, img.height)