JSFiddle - React, Tailwind, and code Playground

by siegesan

HTML

<br/><p>Original was 1600x1200, reduced to 400x300 canvas</p><br/>
<canvas id="canvas" width=100 height=100></canvas>

CSS

body{ background-color: ivory; }
        canvas{border:1px solid red;}

JavaScript

var canvas=document.getElementById("canvas");
        var ctx=canvas.getContext("2d");

        img=new Image();
        img.onload=function(){
            canvas.width=400;
            canvas.height=400;
            ctx.drawImage(img,0,0,img.width,img.height,0,0,275,275);
        }
        img.src="http://i.imgur.com/fdZ0aYp.png";