svg

Returns the SVG representation of the barcode. The returned string is a self-contained SVG document that can be used as is or converted to other formats using tools like Inkscape and ImageMagick. Both programs provide command-line interface suitable for server-side processing.

This method is obsoleted by exportSVG, but will remain fully functional.

Returns

String the SVG representation of the barcode.

Example - get the SVG representation of the barcode

<div id="barcode"></div>
<script>
$("#barcode").kendoBarcode({
  value: "FOO",
  width: 300
});
var barcode = $("#barcode").data("kendoBarcode");
var svg = barcode.svg();
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(svg); // displays the SVG string
</script>
In this article