+ 3

difference between canvas and svg??

describe difference between canvas and SVG ... which is more important.......

27th Apr 2019, 10:30 AM
Najmuddin Ansari
Najmuddin Ansari - avatar
2 Answers
+ 4
Canvas is like a sheet of paper you can freely draw on and erase. Svg is a vector graphic which is like a normal image except it can scale without getting pixelated.
27th Apr 2019, 10:32 AM
Dragonxiv
Dragonxiv - avatar
+ 2
CanvasĀ draws 2D graphics, on the fly (with aĀ JavaScript).Ā SVGĀ is XML based, which means that every element is available within theĀ SVGĀ DOM. If attributesĀ ofĀ anĀ SVGĀ object are changed, the browser can automatically re-render the shape.CanvasĀ is rendered pixel by pixel.
27th Apr 2019, 10:32 AM
Alessio Benvenuti
Alessio Benvenuti - avatar