Test case details

Preparation Code

<script type="text/javascript" src="http://canvg.googlecode.com/svn/trunk/rgbcolor.js"> </script> <script type="text/javascript" src="http://canvg.googlecode.com/svn/trunk/canvg.js"> </script> <canvas id="canvas" />
var canvas = document.getElementById("canvas");     canvas.width = 900;     canvas.height = 500;     var ctx = canvas.getContext("2d");     //c.clearRect(0, 0, 500, 500);

Test cases

Test #1

canvg(canvas, '<svg><path d="M 100 100 L 300 100 L 200 300 z" fill="red" stroke="blue" stroke-width="3" /></svg>', {   ignoreMouse: true,   ignoreAnimation: true,   ignoreDimensions: true,   scaleWidth: 200 });

Test #2

var ctx = canvas.getContext("2d"); ctx.fillStyle = "red"; ctx.strokeStyle = "blue"; ctx.lineWidth = 3; ctx.beginPath(); ctx.moveTo(100, 100); ctx.lineTo(300, 100); ctx.lineTo(200, 300); ctx.closePath(); ctx.fill(); ctx.stroke();