print png image to Dymo Labelwriter 450 using Dymo.Label.Framework

回眸只為那壹抹淺笑 提交于 2019-12-13 03:55:21

问题


I'm trying to print a png image to my LabelWriter 450.

I tried to combine the QR example found here (which does work): QR example and the answer by Adam to another question here: png example

When I run this and click on print I get no errors but nothing happens. No js errors in Chrome console.

This is what I have:

HTML File:

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
        <title>DYMO: Image-code</title> 
        <!-- JQuery -->
        <script src = "http://code.jquery.com/jquery-1.9.1.min.js" type="text/javascript" charset="UTF-8"> </script>
        <!-- Dymo Script -->
        <script src="DYMO.Label.Framework.3.0.js" type="text/javascript" charset="UTF-8"></script>
        <!-- Image Code -->
        <script src="ImageCode.js" type="text/javascript" charset="UTF-8"> </script>
        <!-- Bootstrap -->
        <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.cs"rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
        <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
    </head>

<body>
    <div class="container">
        <div class="jumbotron">
        <h3>DYMO Label Framework JavaScript Library Samples: Image</h3> 
        <div class="header">
             <div id="sampleDesctiption">
                 <span>
                    Print a label with an image.
                 </span>
            </div>
        </div>
    </div>

    <div class="container">
        <div class="printControls">
            <div class="row">
                <div class="col-md-6">
                    <div id="printersDiv">
                        <label for="printersSelect">Printer:</label><br/>
                        <select class="form-control" id="printersSelect"></select>
                    </div>
                </div>
            </div>

            <div id="printDiv" style="padding-top:20px">
                <button class="btn btn-primary btn-lg" id="printButton">Print Image</button>
            </div>
        </div>
    </div>
</div>

JS File:

// stores loaded label info
var barcodeLabel;

// called when the document loaded
function onload() {
    var printersSelect = document.getElementById('printersSelect');
    var printButton = document.getElementById('printButton');



    // loads all supported printers into a combo box 
    function loadPrinters() {
        var printers = dymo.label.framework.getLabelWriterPrinters();
        if (printers.length == 0) {
            alert("No DYMO printers are installed. Install DYMO printers.");
            return;
        }
        console.log("got here: ", printers);

        for (var i = 0; i < printers.length; i++) {
            var printer = printers[i];

            var printerName = printer.name;

            var option = document.createElement('option');
            option.value = printerName;
            option.appendChild(document.createTextNode(printerName));
            printersSelect.appendChild(option);
        }
    }

    printButton.onclick = function() {
        var label_text = 'Code Text Here..';

        barcodeLabel.setObjectText('Image', label_text);

        // Should Be Printer Name, Dymo 450 Turbo..
        console.log("print: ", printersSelect.value);

        barcodeLabel.print(printersSelect.value);

    }

    function getImageLabelXml() {

        var labelXml = '<?xml version="1.0" encoding="utf-8"?>\
                     <DieCutLabel Version="8.0" Units="twips">\
                         <PaperOrientation>Landscape</PaperOrientation>\
                         <Id>LargeAddress</Id>\
                 <IsOutlined>false</IsOutlined>\
                         <PaperName>30321 Large Address</PaperName>\
                         <DrawCommands>\
                             <RoundRectangle X="0" Y="0" Width="2025" Height="5020" Rx="270" Ry="270" />\
                         </DrawCommands>\
                         <ObjectInfo>\
                             <ImageObject>\
                                 <Name>Image</Name>\
                                 <ForeColor Alpha="255" Red="0" Green="0" Blue="0" />\
                                 <BackColor Alpha="0" Red="255" Green="255" Blue="255" />\
                                 <LinkedObjectName></LinkedObjectName>\
                                 <Rotation>Rotation0</Rotation>\
                                 <IsMirrored>False</IsMirrored>\
                                 <IsVariable>False</IsVariable>\
                                 <ImageLocation/>\
                                 <ScaleMode>Uniform</ScaleMode>\
                                 <BorderWidth>0</BorderWidth>\
                                 <BorderColor Alpha="255" Red="0" Green="0" Blue="0" />\
                                 <HorizontalAlignment>Left</HorizontalAlignment>\
                                 <VerticalAlignment>Center</VerticalAlignment>\
                             </ImageObject>\
                             <Bounds X="322" Y="57.9999999999999" Width="4613" Height="1882" />\
                         </ObjectInfo>\
                     </DieCutLabel>';

        return labelXml;
    }



    function loadLabelFromWeb() {
        barcodeLabel = dymo.label.framework.openLabelXml(getImageLabelXml());
        // load image from url and store as Base64
        url = "https://upload.wikimedia.org/wikipedia/en/thumb/5/54/Billboard-music-awards-logo.png/200px-Billboard-music-awards-logo.png"
        barcodeLabel_image = dymo.label.framework.loadImageAsPngBase64(url);
        // overwrite image "Image" from XML label with loaded image
        barcodeLabel.setObjectText('Image', barcodeLabel_image);
    }

    // Load Labels 
    loadLabelFromWeb();

    // load printers list on startup
    loadPrinters();
    };

    dymo.label.framework.init(onload);

来源:https://stackoverflow.com/questions/58995767/print-png-image-to-dymo-labelwriter-450-using-dymo-label-framework

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!