exportImage

Exports the barcode as an image. The result can be saved using kendo.saveAs.

The export operation is asynchronous and returns a promise. The promise will be resolved with a PNG image encoded as a Data URI.

Parameters

options Object (optional)Parameters for the exported image.
options.width StringThe width of the exported image. Defaults to the barcode width.
options.height StringThe height of the exported image. Defaults to the barcode height.

ReturnsPromise A promise that will be resolved with a PNG image encoded as a Data URI.

Example - Exporting a barcode to an image

<div id="barcode"></div>
<script>
    $("#barcode").kendoBarcode({
      value: "BAR",
      width: 300
    });

    var barcode = $("#barcode").getKendoBarcode();
    barcode.exportImage().done(function(data) {
        kendo.saveAs({
            dataURI: data,
            fileName: "barcode.png"
        });
    });
</script>
In this article