Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to print an image with a startprint ?

Status
Not open for further replies.

SalvadorM

Programmer
Sep 15, 2015
5
MX
Hi the problem I have right now is that I need to print an image on a ticket with startprint command .

someone who can help me fix it please
 
Not sure I have heard of this software. Who makes it?
Also, what does the script look like where you are adding the startprint command?
 
forgiveness for not explaining well, the problem is a selling point with micros 3700, for what I know is how I can send startprint call the command to print an image on a ticket
 
Not sure if you can print an image from the isl scripting "startprint" function. I know Barcodes can be done. I haven't tried images.

Standard print function
Code:
startprint printer
   printline “---------------------------”
   printline @dwon, @redon, “chit”
   printline “----------------------------”
   @dwoff, @redoff
endprint
 
yes, I am familiar command startprint just wanted to know if you can print images with the command or if someone else to do it.
you know of any?
 
I have't, honestly I haven't even tried. You will also need to make sure the printer is capable of printing images.

What have you tried so far?
 
Looking through a few things, it looks like you can add a Logo image to the printer and then have it print that. I'm not 100 percent sure on how this works as I have never set this up.

Another way may be to call a dll that would be installed on the workstations that is called via the ISL script, which tells the printer to print the image. Not sure how this would work, but its something to try.
 
ok, thank you very much, proves everything you've told me and investigare more.
 
can I get someone to assist me with my Aloha POS system? I need help with fixing prices, adding buttons, redirecting and testing printers, please get back to me asap, 4043957215 or aisyork@gmail.com

Thank you
 
If i remember correctly you need to but ~~ before the file name and it attempts to print it.

Code:
startprint @CHK
   printline “---------------------------”
   printline "~~MyFile.bmp"
   printline “----------------------------”
   @dwoff, @redoff
endprint

NOTE: MyFile.bmp must be in the bitmap folder. eg. \CF\Micros\Bitmaps
1. I havent tested this recently, but i remember it working in the past (years ago)
2. The file must be quite small. Around 12KB maximum i think.
3. The file must be a monochrome bitmap.

Do you want some custom SIM scripts developed. Contact me via my website
 
@CathalMF, Does this work for 9700 and or 3700 Systems? Thanks for the info.

I've tried this on the 9700 system and it prints out the ~~MyFile.bmp, I also tried it without the " and it doesn't work. Any thoughts?
 
I didn't think so. How about barcodes (without having to use a dll or other item outside the Winclient).
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top