Questions tagged [posprinter]

POS for .NET class that defines the programmatic interface for a UPOS Printer device.

PosPrinter class defines three printer "stations," as follows:

  • Journal. Used for simple text messages that log transaction and activity information kept by the store for audit and other purposes.
  • Receipt. Used to print transaction information (typically given to the customer), or for store reports. Receipt contains either a knife to automatically cut the paper between transactions, or a tear bar to manually cut the paper.
  • Slip. Used to print information on a form (typically given to the customer), or to print "validation" information on a form. The form type is usually a check or credit card slip.

Full documentation

41 questions
5
votes
3 answers

flutter embedded pos printer (Like: Android Q2 device)

Already I have built a flutter project. Now I need to print from a pos embedded device. I am googling, but I don't get any solution. Please help me if there is any solution. Actually I need for Android Q2 device  
3
votes
1 answer

C# POS Printer API: can't find printer

I am trying to build an app using the C# POS printer API. I successfully ran the sample app provided here: https://github.com/Microsoft/Windows-universal-samples/tree/master/Samples/PosPrinter, and now I am trying to integrate the API into my own…
Eutherpy
  • 4,471
  • 7
  • 40
  • 64
3
votes
2 answers

JposException: Can't connect printer device (issue on linux only)

I've developed a java application that works perfectly on windows when i print a receipt. The issue comes when the same java application is tested it in Ubuntu 14.04, and gives me this: jpos.JposException: Can't connect printer device=SRP-350II …
UserBL
  • 31
  • 3
2
votes
1 answer

ESC-POS-USB-NET Unable to access printer exception

I have an EPSON fiscal printer (FP 81 II) I installed its drivers and now I'm able to print test document to the printer and it's ok. The installed printer is the following I'm trying to execute the simple code of the library Printer printer = new…
Martina
  • 1,852
  • 8
  • 41
  • 78
2
votes
1 answer

How to print from javascript (web app) to receipt printer?

I tried to print from javascript like below function PrintElem() { var mywindow = window.open('', 'PRINT'); mywindow.document.write('Payment Slip'); mywindow.document.write('
decoder
  • 886
  • 22
  • 46
2
votes
1 answer

Epson POS printer, ePOS Sdk. What's the default port?

I'm using TM-T82II epos printer with the ePOS-Print SDK. I couldn't figure out how to specify the port on which we need the devices (mobile and printer) to communicate. What is default port used by the printer/sdk? so that we can enable it on the…
Ocelot
  • 1,733
  • 4
  • 29
  • 53
1
vote
1 answer

Use multiple printers in JavaScript

I need to print labels and receipts using a web app. Im using vanilla js. Before printing, I need a way to specify the printer in a js function. How best can I do that? or if I can have something that allows me to print that on the client side. I…
1
vote
0 answers

POS (Point of Sale) Printer integration in Angular

I have an angular app developed in angular version 8. I need to integrate EPSON TM-T82. pos thermal printer for printing purpose. I searched for packages in npm and doesn't anyone. Is any npm integration available for that? I tried the Javascript…
1
vote
2 answers

im have trouble with adding pos printer to posdm (configuration.xml or command line adddevice)

I am having trouble with adding my Pos Printer to PosDM in Configurattion XML and with command line add device. i had searched a lot about this but got nothing Useful i had tried the command line add device like: "posdm adddevice…
amirsalar
  • 13
  • 2
1
vote
2 answers

Printing POS (EPSON TM-U220D) Printer Using Mike42/Escpos-php PHP Library

We are working on a PHP based web application for a money exchanger. The money exchanger we are working for use POS (EPSON TM-U220D) Printer for customer receipt, So we are looking for a way to print from the web application to the POS Printer and…
G M Kibria
  • 11
  • 1
  • 2
1
vote
0 answers

Want to know if there is any way to Print from UWP App without showing PrintDialog.

Need suggestions on printing from UWP App without showing PrintDialog. Tried implementing using POS Printer API But unable to connect to HP Printer which is connected to NETWORK. Want to remove dependency with Brokered Component which am using for…
Meena
  • 685
  • 8
  • 31
1
vote
0 answers

escpos python libary to print barcode and logo with message

from escpos import printer import random printFile = "/dev/usb/lp0" printer = printer.File(printFile) printer.set('left') printer.image('logo.jpg') printer.text("My Company") Once below the logo and my company name i need…
Devanand J
  • 74
  • 5
1
vote
1 answer

Parse and Display ESC/POS file in windows

I am trying to parse an ESC/POS file which is created by the POS Printer Driver and display it on windows. Unfortunately I couldn't find any parser / renderer for that and I've been researching this for 2 weeks now. All the existing solutions are…
1
vote
2 answers

How to send control commands to POS printer from Delphi

I use this code to print text file to POS printer (EPSON): AssignFile(prnfile, 'file.txt'); Reset(prnfile, 1); AssignFile(port, 'COM3'); Rewrite(port, 1); repeat BlockRead(prnfile, buffer, SizeOf(buffer), Read); …
Mindaugas
  • 115
  • 2
  • 11
0
votes
0 answers

How to convert A4 size invoice to POS size invoice in blazor server

I am working on a web app built in asp.net core that generates A4 size invoices(using blazor server), but now I am required to convert those invoices to POS invoices (which will print on thermal printer, like in the supermarkets). Also, A4 page has…
1
2 3