使用.NET WinForm打印预览ZPL II命令,然后再将其发送到Zebra打印机

has*_*maa 18 .net zpl-ii epl winforms zpl

我有一个.NET Windows应用程序,使用ZPL II或EPL2向Zebra打印机打印命令.有没有办法在直接从Zebra打印机打印之前打印预览表格中的数据?

小智 20

查看Labelary Web服务,它允许您以编程方式将ZPL转换为图像.

只需构建一个包含要呈现的ZPL的URL,从Web服务器返回图像,并从应用程序中向用户显示图像.

string zpl = "YOUR ZPL HERE";
string url = "http://api.labelary.com/v1/printers/8dpmm/labels/4x6/0/" + zpl;
using (WebClient client = new WebClient()) {
    client.DownloadFile(url, "zpl.png");
}
Run Code Online (Sandbox Code Playgroud)

还有一个ZPL查看器允许您直接在网页上编辑和查看ZPL.


Vac*_*ano 10

我需要能够在我的应用程序中显示标签.所以我联系了Fiddler并弄清楚通信是什么来获得标签的图像.

我让它在LinqPad中运行.HTTP的东西可以清理一下,但我想我会发布代码供其他人使用:

void Main()
{
    string printerIpAddress = "10.92.0.167";
    string zpl="^XA^CFD^CVY^PON^FWN^LS0^LT0^LH15,17^FS^FO0,2^FO14,3^FH^FDHi^FS^XZ";

    // post the data to the printer
    var imageName = PostZplAndReturnImageName(zpl, printerIpAddress);

    // Get the image from the printer
    var image = LoadImageFromPrinter(imageName, printerIpAddress);

    Console.WriteLine(image);   
}


public static string PostZplAndReturnImageName(string zpl, string printerIpAddress)
{
    string response = null;
    // Setup the post parameters.
    string parameters = "data="+ zpl;
    parameters = parameters + "&" + "dev=R";
    parameters = parameters + "&" + "oname=UNKNOWN";
    parameters = parameters + "&" + "otype=ZPL";
    parameters = parameters + "&" + "prev=Preview Label";
    parameters = parameters + "&" + "pw=";

    // Post to the printer
    response = HttpPost("http://"+ printerIpAddress +"/zpl", parameters);

    // Parse the response to get the image name.  This image name is stored for one retrieval only.
    HtmlAgilityPack.HtmlDocument doc = new HtmlDocument();
    doc.LoadHtml(response);
    var imageNameXPath = "/html[1]/body[1]/div[1]/img[1]/@alt[1]";
    var imageAttributeValue = doc.DocumentNode.SelectSingleNode(imageNameXPath).GetAttributeValue("alt","");
    // Take off the R: from the front and the .PNG from the back.
    var imageName = imageAttributeValue.Substring(2);
    imageName = imageName.Substring(0,imageName.Length - 4);

    // Return the image name.
    return imageName;
}


public static string HttpPost(string URI, string Parameters) 
{
   System.Net.WebRequest req = System.Net.WebRequest.Create(URI);
   req.Proxy = new System.Net.WebProxy();

   //Add these, as we're doing a POST
   req.ContentType = "application/x-www-form-urlencoded";
   req.Method = "POST";

   //We need to count how many bytes we're sending. 
   //Post'ed Faked Forms should be name=value&
   byte [] bytes = System.Text.Encoding.ASCII.GetBytes(Parameters);
   req.ContentLength = bytes.Length;

   System.IO.Stream os = req.GetRequestStream();
   os.Write (bytes, 0, bytes.Length); //Push it out there
   os.Close ();

   System.Net.WebResponse resp = req.GetResponse();

   if (resp== null) return null;
   System.IO.StreamReader sr = 
         new System.IO.StreamReader(resp.GetResponseStream());
   return sr.ReadToEnd().Trim();
}

public static Image LoadImageFromPrinter(string imageName, string printerIpAddress)
{
    string url = "http://"+ printerIpAddress +"/png?prev=Y&dev=R&oname="+ imageName +"&otype=PNG";  

    var response = Http.Get(url);   

    using (var ms = new MemoryStream(response))
    {       
        Image image = Image.FromStream(ms);

        return image;
    }  


}

public static class Http
{
    public static byte[] Get(string uri)
    {               
        byte[] response = null;
        using (WebClient client = new WebClient())
        {
            response = client.DownloadData(uri);
        }
        return response;
    }   
}
Run Code Online (Sandbox Code Playgroud)

这有以下参考文献:

HtmlAgilityPack
System.Drawing
System.Net
Run Code Online (Sandbox Code Playgroud)

以及以下用途:

HtmlAgilityPack
System.Drawing
System.Drawing.Imaging
System.Net
Run Code Online (Sandbox Code Playgroud)

注意:我找不到与串行/非IP地址打印机通信的方法.(虽然这并不意味着没有办法.)


tre*_*esf 5

如果您可以使用 Chrome 插件,请尝试使用 Simon Binkert 的Zpl 打印机。该插件基于之前评论中链接的Labelary Web 服务

另见:https : //stackoverflow.com/a/33066790/3196753

请注意,尽管此插件在 Google Chrome 中运行,但它可以与计算机上能够发送原始命令的任何应用程序一起使用。

铬zpl打印机

它可以配置为侦听本地主机或专用 IP 地址,因此可用于在 PC 和本地网络上模拟 ZPL 打印机。如果您需要本地打印机或打印机共享,您可以在 PC 上设置一个原始打印机队列,该队列在主机名/IP 和端口上指向它,其他桌面应用程序将能够向它发送 ZPL。

请注意,如果您需要将其提供给网络上的其他计算机,请确保127.0.0.1在打印机设置中将其更改为有效的 LAN IP 地址。


Ovi*_*ler 2

预览标签的唯一方法是在打印机的网页上。

如果您转到打印机的目录列表http://<printer IP>/dir并单击已保存的标签(或创建新标签),则可以单击"Preview Label"