PDF Printing

Anonymous (not verified) -
profile

Anonymous (not verified)

Dfghjkjjn

Please register or login to post a reply

48 Replies

V Vedsatx Saddvv

Hi Mirco,
I haven't tried it on Android yet, but the way the PDF Virtual device works, you should be able to just send your PDF as a file.  Try something like this code (using the Android SDK)
<code>import com.zebra.sdk.comm.Connection; </code>
<code>import com.zebra.sdk.comm.ConnectionException; </code>
<code>import com.zebra.sdk.comm.TcpConnection; </code>
<code>import com.zebra.sdk.device.ZebraIllegalArgumentException; </code>
<code>import com.zebra.sdk.printer.ZebraPrinter; </code>
<code>import com.zebra.sdk.printer.ZebraPrinterFactory; </code>
<code>import com.zebra.sdk.printer.ZebraPrinterLanguageUnknownException; </code>

<code>public class SendPDFExample {&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </code>
<code>&nbsp;&nbsp;&nbsp;&nbsp; public static void main(String[] args) throws Exception {&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </code>
<code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Connection connection = new TcpConnection("192.168.1.100", TcpConnection.DEFAULT_ZPL_TCP_PORT);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </code>
<code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; try {&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </code>
<code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; connection.open();&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </code>
<code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ZebraPrinter printer = ZebraPrinterFactory.getInstance(connection);</code>
<code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; printer.sendFileContents("/sdcard/documents/sample.pdf");&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </code>
<code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } catch (ConnectionException e) {&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </code>
<code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; e.printStackTrace();&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </code>
<code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } catch (ZebraPrinterLanguageUnknownException e) {</code>
<code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; e.printStackTrace();</code>
<code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } catch (ZebraIllegalArgumentException e) {</code>
<code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; e.printStackTrace();</code>
<code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } finally {</code>
<code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; connection.close();</code>
<code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</code>
<code></code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }
}

M Mirco Dunker

Hi Robin,

thanks for your post. I have one question: We have a QLN 220 Printer with Link-OS PDF Virtual Device but we don't know how to send PDF Files to the printer. We can't find any example or usefull SDK Api documentation. We use the native Android SDK. Can you tell we in detail how we have to send a PDF File?

Thanks in advance,
Mirco

M Mirco Dunker

Hi Robin,

thank you very much. It's easy and working. Sometimes we can't see the wood for the trees

V Vedsatx Saddvv

Hi Hector, From the developer standpoint it's the same as sending any file.

#import "TcpPrinterConnection.h"
#import
#import "ZebraPrinter.h"
#import "ZebraPrinterFactory.h"
<a href="http://techdocs.zebra.com/link-os/latest/ios/content/interface_tcp_prin…; *zebraPrinterConnection = [[<a href="http://techdocs.zebra.com/link-os/latest/ios/content/interface_tcp_prin…; alloc] initWithAddress:@"192.168.1.101" andWithPort:6101];
BOOL success = [zebraPrinterConnection open];
NSError *error = nil;
id printer = [<a href="http://techdocs.zebra.com/link-os/latest/ios/content/interface_zebra_pr…; getInstance:zebraPrinterConnection error:&amp;error];
// Send file to the printer
BOOL sent = [[printer getFileUtil] sendFileContents:@"/Documents/sample.pdf" error:&amp;error];
if (error != nil || printer == nil || success == NO || sent == NO) {
&nbsp; UIAlertView *errorAlert = [[UIAlertView alloc] initWithTitle:@"Error" message:[error localizedDescription] delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
&nbsp; [errorAlert show];
&nbsp; [errorAlert release];
}
[zebraPrinterConnection close];
[zebraPrinterConnection release];

V Vedsatx Saddvv

Hi Timo,
What you have should work fine.&nbsp; Are you getting an error?&nbsp;
The PDF printing is not part of any SDK, but an application you load on the printer to handle PDF documents directly.&nbsp; <a href="https://www.zebra.com/us/en/products/software/barcode-printers/link-os/… Direct - Virtual Device | Zebra</a>
Robin

V Vedsatx Saddvv

Hi Timo,
On most OS's there are native APIs for just opening a standard TCP socket, opening and reading a file, and sending it to the socket.&nbsp; <a href="https://www.codeproject.com/articles/32633/sending-files-using-tcp">Sen… Files using TCP - CodeProject</a> .&nbsp; The default ports (depending on the printer) are 6101 and 9100.&nbsp;

If you want to use a standard printer without the virtual device, you have to convert the PDF on the app side. You can convert it to some image types that the printer will take directly.&nbsp; Most PDF converter libraries we've looked at are either expensive or not very good.&nbsp; iOS is the only OS we've looked at that has a decent native PDF converter.
Hope this helps,
Robin

T Timo Eismar

Besides an installation manual (how to get the virtual device to the printer) I had no other documentation. I have the SDK you mentioned, but it doesn't mention anything on the PDF Virtual Device. But no worries, the functionality I wanted has been achieved, I can print PDF on my Zebra Printer from my program .
Do you have any infos on how I could do it without you API? Not that I want to change my programm, more out of technical curiosity.

Thanks for the support.

D Dener de Alencar

Hi, could you help me with the error below?

com.zebra.sdk.comm.ConnectionException: Error writing to connection: ZDesigner ZM600 200 dpi (ZPL).

The error occurs in the line below:
ZebraPrinter printer = ZebraPrinterFactory.getInstance(connection);

M Musab Alrammah

Robin,&nbsp; Unfortunately, not true. When trying to print it gives the printer a hint that there is something you want to print. But printing is not done. Note that the printer used is IMZ320. And through Bluetooth

I want to help . Thanks

M Musab Alrammah

Robin, Unfortunately, not true. When trying to print it gives the printer a hint that there is something you want to print. But printing is not done. Note that the printer used is IMZ320. And through Bluetooth

I want to help . Thanks

G Gosef khled

Same problem ..... why ?
There must be a Virtual Device

H Hans Guth

Hello John,
the orientation in SAP is part of the Adobe livecycle designer. The orientation depends on the width/length of the label and is set automatically. You can't change it manually.
I tried it with "Form calc" instructions in the XML, but I couldn't change the orientation in SAP..
Our current solution works like this: Landscape in Adobe &gt; portrait orientation in the windows driver &gt;&gt; landscape output on ZEBRA
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Landscape in Adobe &gt; landscape orintation in win driver&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt;&gt; portrait output on ZEBRA (rotation 90°)
and so on.
Hans

J John Ramsey

Hi Hans,
Here is the URL for the Zebra Windows Drivers.

<a href="https://www.zebra.com/apps/dlmanager?dlp=-227178c9720c025483893483886ea…;

John

J John Ramsey

Hi Hans,
Zebra has only created device types to handle the SAPScript Upload method where the ZPL is wrapped around SAPScript.&nbsp; This solution is tied to the Zebra Designer for MySAP Business Suite or other tools designed to output ZPL, including manual coded ZPL.&nbsp; These device types are:
<strong>For SAP Release 4.6C and greater.</strong>
<strong>ZLB_ZEB.PRI</strong>, S9162.CPA (for Scalable fonts - IBM™ CP850)
<strong>ZLB_ZEBU.PRI</strong> (for Andale and Swiss 721 fonts - Unicode UTF-8)

The other device types created by Zebra support Smart Forms.&nbsp; These are the ZLZEB and YZB named device types.&nbsp; The IFbA device types are created by Adobe.&nbsp; Zebra has no device types that work with this solution at this point.&nbsp;
________________________________________________________________________________

The <strong>PDF Direct</strong> solution is available through your reseller or purchasing from the Zebra website.&nbsp; The URL below is where the <em>license can be purchased</em>.&nbsp;

<a href="https://www.zebra.com/us/en/products/software/barcode-printers/link-os/…;

Please note that the PDF Direct solution is only available on LinkOS printers.&nbsp; You should be able to use any device type that outputs a PDF, and then route that to the printer directly.

<em>PDF Direct works with LinkOS printers regardless of they are mobile or tabletop.</em>

________________________________________________________________________________

I think that if you use the SAPWIN driver, and you have a windows printer, you should easily be able to load the Zebra Windows Driver and route the job to the printer.

This is an example of how that process would work:

Print Job in SAP &gt;&gt;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Routes through SAPWIN device type &gt;&gt;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SAPWIN sends image to WIN Print Server &gt;&gt;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; WIN Print Server routes through Zebra Win Driver &gt;&gt;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Zebra Win Drivers sends to printer / Prints label

This solution should work unless you decide to move away from having a Windows Print Server managing the print solutions.
________________________________________________________________________________

If you need additional information, please send an email to <a href="mailto:sapinfo@zebra.com">sapinfo@zebra.com</a&gt; and <a href="mailto:jramsey@zebra.com">jramsey@zebra.com</a&gt;

J John Ramsey

Hi Hans,
The process for PDF Direct would be:
Print Job in SAP as <strong>PDF</strong> &gt;&gt;&gt;
Routes through <strong>SAPWIN device type (maybe another PDF Device type) </strong> &gt;&gt;&gt;
Win Spooler sends to <strong>Zebra printer ZT410 with PDF direct</strong> / Prints label

There is no need to pass the PDF to a windows driver.&nbsp; If you still want to use the Windows Printer Spooler/Server, you can do so but will need to pass the PDF through a raw or generic text driver. The reason for this is you do not want anything to be added to the print output.&nbsp; The Zebra Windows driver takes the image it receives, converts it to one that the printer understands, and then passes it to the printer.

Best Regards,
John

H Hans Guth

Hello John,
Thanks for the answer. I will test it as an alternative to our current solution.
There's stiil a question in my mind. How can I turn the output by 90° without a driver ?
All our labels are designed in format landscape, e.g. 4x2inch, 6x4 inch.......
Today we turn the label in the windows driver by 90° and print portrait format with max. 4 inch width.

How can I turn the output without an driver ? In the printer configuration there's no parameters to turn the output.
Hans

J John Ramsey

Hi Hans,
Rotation can only be performed by a Windows Driver after it is sent from SAP.&nbsp; The reason for this is that the output file is coming down as an image or ZPL with a specific orientation.&nbsp; The windows driver can make the rotation modification on the fly.&nbsp; If ZPL is the output then it is hardcoded with a specific rotation.&nbsp; The only way to change the rotation in ZPL is to modify it with the correct rotation ZPL.&nbsp;

Is there a reason why you are not rotating it to portrait directly from SAP?

John

J John Ramsey

Hi Hans,
This sounds like an issue within Adobe Livecycle Designer.&nbsp; Let me ping Adobe to see if there is a solution for rotation.&nbsp; They sometimes take a long time to respond, but hopefully they will have a solution.

John

H Hans Guth

Hello John,
you proposed a raw or generic text driver. I saw that there's a parameter for label orientation !!!
Thanks for your support.
Hans

J John Ramsey

Hi Hans,
The raw or generic driver will not change the orientation (when sending ZPL) as it is designed as a passthrough.&nbsp;&nbsp; I am not sure what the results would be if you were sending a PDF.&nbsp; It may rotate a PDF, so my suggestion would be to try it and let me know the results.

The problem arises when you send a PDF to the printer with the PDF direct solution.&nbsp; The reason for this is that the PDF has its rotation already set within its code. I am not sure if a raw/generic driver can actually manipulate the PDFcode set.&nbsp; Again, this is one of those things that is best tested to see the results.

John

D Darryn Campbell

Hello Steve,
I wrote my question wrong, i meant. which printer driver do you use on the print server?
Hans

D Darryn Campbell

Hello John,
thanks for your suggestion. In the past I tested different printer types in SAP, the AZPL-drivers, the Zdesigner-driver on the print server.
But at the end I hope to find a Zebra supported solution.
We are using the IFbA only for print output. Adobe livecycle designer is our first choice for all forms, also for bigger forms for thermal printers (min. 1x2inch). For mini forms like part labels (e.g. 0.5x1.5inch) we use the printer programming language.
With the PDF format we are independant of the printer. Laser printers are no problem, but thermal printers. We can't use only 1 brand, because the technical support worldwide is very different. So we have 3 different brands.
I am very interested in the PDF direct. Could you give me concrete instructions how to realize it ? Which SAP printer type, SAP protocol type, do we need SAPsprint, which driver on the print server ?
In 2018 we will start with mobil printers e.g. QLN420 like Steve told it. Will PDF direct work with it ?
I would be grateful for any advice
Hans

M Musab Alrammah

Robin, do we have a sample for Xamarin.iOS?

thanks

H Hans Guth

Hi John,
yes I will test it and I'll tell you the results. I have to talk with our dealer to get a test "PDF print".
It will last, and first it is christmas.
best regards, merry christmas and a happy new year
Hans

f fen den

Thank you a lot, Robin The guide on <a href="http://www.rasteredge.com/how-to/csharp-imaging/pdf-creating/">PDF printing</a> is of great help to my work. Best regards.

H Hector Meza

Robin, do we have a sample for IOS?

thanks

V Vedsatx Saddvv

Hi Timo,
The .NET SDK dll is in the&nbsp; <a href="https://www.zebra.com/us/en/products/software/barcode-printers/link-os/… Multiplatform SDK | Zebra</a> download.&nbsp;

You can send the file a number of ways, but if you are using a Windows Mobile/CE device, this is probably easiest.&nbsp; You can send the file to the printer over TCP, Bluetooth, USB, or nearly any other communication method supported by your printer.&nbsp; You don't have to use our SDK, but we have built in some API's to make it easier.&nbsp; What kind of documentation are you looking for?
Robin

T Timo Eismar

Update: for windows .NET:

-link ZSDK_API.dll to project

ZebraPrinterConnection zc = new TcpPrinterConnection("192.168.100.111", TcpPrinterConnection.DEFAULT_CPCL_TCP_PORT);
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; zc.Open();
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ZebraPrinter zp = ZebraPrinterFactory.GetInstance(zc);
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; FileUtil fu = zp.GetFileUtil();
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fu.SendFileContents(@"C:\SomeFile.pdf");
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; zc.Close();

Is there any documentation on this?

Is there a version for .NET printing of PDF to the Virtual Device?

T Timo Eismar

No, it works fine, I just needed the DLL from the SDK to send the PDF to the Virtual Device Equipped printer. Or is there any other way to send the file? I don't have any documentation on the Virtual Device sadly (as I cannot find any)

Z Zamfir Bogdan

Hi,
I need to print PDF generated from a web app (using SSRS and export to PDF) to a S4M printer, but unfortunately I cannot find PDF Virtual Device for this printer.
Can you point me where to find this device?

Otherwise, what other options I have to be able to print labels from a web application.
The web application is hosted in cloud and the users are accessing it over internet.
While the S4M printer is local (either connected through USB or as network printer).

Thank you

M Musab Alrammah

Robin, do we have a sample for Xamarin.iOS?

thanks

V Vedsatx Saddvv

Hi Musab, I'll post something a little later today.&nbsp;

D Daniel Quagliana

Zebra does offer a PDF Virtual Device for Link-OS printers: <a href="https://www.zebra.com/us/en/products/software/barcode-printers/link-os/… Direct - Virtual Device | Zebra</a>

M Musab Alrammah

Any information about this problem. Help me

M Musab Alrammah

Should I buy it so we can printing process?

S Steve Carlton

Hi,
We have a QLN420 with Link OS and PDF license.We are trying to print from SAP but nothing is coming out. It triggers the printer but it just feeds blank pages.
Do we setup the device as a PDF printer in SAP and send the spool to it or are we supposed to send the file direct to it via tcp ?

N Nicola Lazzara

Hi Daniel, i don't understand if is necessary to buy PDF Virtual Device for print any pdf document in Xamarin.Forms project [for Ios and Android] or if is not necessary (and if is possible by blutooth connection).

Thanks in Advance,
Nicola

H Hans Guth

Hello Steve,
we use SAP and a lot of ZEBRA printers in our plants in US and have the same problem/Questions similar to yours.
Did you ever got an answer or figured it out yourself ?
Thanks in advance
Hans

S Steve Carlton

I never got a reply that made much sense from Zebra in terms of ABAP/Config.
The Direct PDF add-on for the printer requires that the PDF in base64 to be sent direct to the printer via a TCP port
That can’t be easily done in ABAP, so why they are saying it’s a solution for SAP in a bit confusing.

What you can do, and how we resolved it, was to setup the mobile printers on a print server, not direct from SAP.
When connected directly to a PC, you can send a PDF to it without doing anything special because it has a PCL driver and windows does the rest.
Do not use the ZPL driver, use the PCL driver on the print server.
Setup the printer in SAP as a PDF1 with access type U
Then call FM ADS_CREATE_PDF_SPOOLJOB with the base64 as an xstring.

This does not need the PDF Direct add-on.

H Hans Guth

Thanks for your quick reply. I have had similar experiences as you.Your solution with the ADS-function is very interesting, because next in 2018 we start also with mobile label printers.Our labels are Adobe forms in SAP. The PDF of the ADS is sent to ZT410 printers defined as device type PDF1 with Berkeley protocol. On the Windows print-servers the SAPsprint/SAPPDFprint-Services run. The Zebra printers are connected to the print-servers. But we use the zebra printer driver from Bartender (Seagull). Depending on the orientation, landscape or portrait and the label dimensions must be set. It works, but unfortunately it is not very flexible.
My question: when I would test the ADS-function, which driver should I take for the ZEBRA printer ?
thanksHans

S Steve Carlton

That function module only works for SAP printers that have type PDF1

J John Ramsey

Hi Hans,
In Adobe Forms, you should have the capability to utilize the device types that were created by Adobe, for the Zebra printers.&nbsp; If I recall correctly, the device types that were created by Adobe are named AZPL200, AZPL300, and AZPL600, with the last 3 numbers referring to the DPI (dots per inch) of the printer.&nbsp; The device types are used to output the native Zebra programming language called ZPL.&nbsp; In an ideal Zebra printing application, the printer receives ZPL.&nbsp; This enables faster processing printer side, better quality barcodes, and lowers the amount of network traffic as the file is more often smaller than when sending an image.

Some customers decide that the PDF is their ideal output.&nbsp; This approach requires that the PDF routes through a driver and converts the PDF to an image that the printer understands.&nbsp; You mentioned that you are using the Seagull driver.&nbsp; You can also try using the Zebra Printer drivers (available on the Zebra website) designed to work on Windows.&nbsp; Zebra also recently introduced a solution called "PDF Direct".&nbsp; The allows a PDF to bypass a windows driver and be processed directly in the printer.&nbsp; This solution requires a purchased license per printer.&nbsp;

My suggestion is that you try to use the IFbA device types.&nbsp; If you are using the interactive portion of IFbA, then we may need to modify the approach to your printing solution.&nbsp; If this is the case, please comment so we can discuss further.

Best Regards,
John Ramsey

J John Ramsey

Hi Hans,
Maybe your local reseller will have a printer with Direct Print loaded on it so that you can test it before you purchase a license.&nbsp; If you desire the PDF Direct license immediately, you can purchase it online from Zebra.&nbsp;

<a href="https://www.zebra.com/us/en/products/software/barcode-printers/link-os/… Direct - Virtual Device | Zebra</a>

Merry Christmas and a Happy New Year to you and yours as well!

John

H Hans Guth

Hello John,
thanks for your suggestion. In the past I tested different printer types in SAP, the AZPL-drivers, the Zdesigner-driver on the print server.
But at the end I hope to find a Zebra supported solution.
We are using the IFbA only for print output. Adobe livecycle designer is our first choice for all forms, also for bigger forms for thermal printers (min. 1x2inch). For mini forms like part labels (e.g. 0.5x1.5inch) we use the printer programming language.
With the PDF format we are independant of the printer. Laser printers are no problem, but thermal printers. We can't use only 1 brand, because the technical support worldwide is very different. So we have 3 different brands.
I am very interested in the PDF direct. Could you give me concrete instructions how to realize it ? Which SAP printer type, SAP protocol type, do we need SAPsprint, which driver on the print server ?
In 2018 we will start with mobil printers e.g. QLN420 like Steve told it. Will PDF direct work with it ?
I would be grateful for any advice
Hans

H Hans Guth

Hi John,
thanks for your detailed explanation. I miss the PDF direkt.
Does this process description - nearly the same like yours - will work with PDF direct ?
Print Job in SAP as <strong>PDF</strong> &gt;&gt;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Routes through <strong>SAPWIN device type</strong> &gt;&gt;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SAPWIN sends image to WIN Print Server (<strong>SApsprint/SAPPDFprint</strong>) &gt;&gt;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; WIN Print Server routes through <strong>Zebra Win Driver (Zdesigner driver)</strong> &gt;&gt;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Zebra Win Drivers sends to <strong>Zebra printer ZT410 with PDF direkt</strong> / Prints label&nbsp; ?

A Alexandar Soundararajan

Is there any file size or any other restriction while printing PDF files through PDF Direct?
Actually I have printed few PDF files through PDF Direct in the ZD620d printer, some of them not printed, it prints as blank.
Please share your thoughts and suggestions to resolve this issue.

N Nirmal Deol

Hi John
I am trying to print PDF from Enterprise browser. ZPL works fine , but I cannot find any way in docs to print PDF requested from Api to Mobile printers. Our printers are installed with PDF licenses and they print PDF from Pc Browsers perfectly fine. Can you please provide some information on this

R Ruggeri Laura

With Xamarin.forms what is the simplest code to send a pdf file to the printer?
I print via bluetooth.
I would like to know exactly which nuget library to download, a sample code and if i need to buy and install anything on the printer.