<!--- Provide a general summary of the issue in the Title above --> If the JPEG image has orientation metadata, the `drawImage` method draws an unrotated image. ## Steps to Reproduce 1. Download JPG image with orientation metadata:  2. Load the image with `loadImage` utility. 3. Draw the image on canvas. <!--- For bugs, provide a short, complete code example to reproduce the issue. --> ```js const image = await loadImage("image_path"); const canvas = createCanvas(image.width, image.height); const context = canvas.getContext("2d"); context.drawImage(image, 0, 0); const result = canvas.toBuffer(); fs.writeFileSync("result_path", result); ``` Expected: <img width="229" alt="github1" src="https://user-images.githubusercontent.com/63286826/94536142-169b2080-024b-11eb-9b83-88de7e603405.png"> Got: <img width="431" alt="github2" src="https://user-images.githubusercontent.com/63286826/94536284-40544780-024b-11eb-88ed-578597158473.png"> Tested on MacOS, CentoOS. Thanks!