up vote 4 down vote favorite
2
share [g+] share [fb]

I have a Star TSP600 thermal receipt printer attached to my macbook via usb. The drivers are installed, and I can print to it using the normal Mac print dialog.

How I can construct a program to send text to the printer? Is there a guide to basic printing interfaces? I generally work in Python, and I'd be willing to learn another language if it's appropriate for the task. Just looking for the basic "Hello World" example to get off the ground.

link|improve this question

70% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Take a look at the CUPS command line options.

Then you could use popen to send text to the printer.

#!/usr/bin/env python
import popen2
popen2.popen4("lpr -P [printer] " + output_file)
link|improve this answer
1  
Just in case anyone is struggling with this, here's the specific command I had to use: /usr/bin/lp -o media=Custom.12x100mm /tmp/label.pdf – Bemmu Jul 15 '11 at 4:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.