Questions tagged [ipl]

Intermec Printer Language

Intermec Printer Language (IPL) is a proprietary programming language used to print on Intermec label printers.

13 questions
1
vote
3 answers

Print Players With Their Score

How can I print player’s names with their scores? ** (Player) Has (Score) Points Here's My Code #python 3.7.1 print ("Hello, Dcoder!") players = ["Akshit","Bhavya", "Hem", "Jayu", "Jay M", "Jay Savla", "Miraj", "Priyank", "PD", "Pratik"] score =…
1
vote
1 answer

Convert from ZPL code to IPL code

In my application I have some Zebra printer's and Intermec printer's (PD41). The code is in ZPL language, so my Zebra printer's is working, but my Intermec printer's dont. I need to write this code in IPL language to my Intermec understand the…
MCecim
  • 11
  • 2
1
vote
1 answer

python (pygame and pyopenGL) Convert 3D models (. obj file) into a sequence of gray image

Currently I'm working on object recognition systems, which need a whole lot of training data. I am trying to convert a 3D model into a sequence of gray images, rotating the model and sampling the 2D image with a certain time interval. Because I am…
Theodora
  • 571
  • 4
  • 11
1
vote
1 answer

Z3 + boogie installation

I am having some hard time getting the Boogie and Z3 to install on Windows 7 with Z3 version 4.3.2 from codeplex. I've tried to install it like spec# by register.cmd command in prompt, but it doesnt work. Can anyone tell me how to do it ?
1
vote
1 answer

Centering a non-fixed width font in a field using Intermec Printing Language version 12

We are trying to create printer codes to send a maximum 18 character text field to a label printer using IPL version 12. This field will not always hit the max and we need it centered. Is there a way to center a font that is not fixed width in a…
Scott Boettger
  • 3,657
  • 2
  • 33
  • 44
0
votes
2 answers

Intermec Printer Language - Tabulation Problem

I'm an ABAP programmer and I was asked to make a minor modification to an IPL label. Easily done, but now I was tasked to fix a long running error within said label. I know nothing about IPL and the lack of a online viewer makes everything…
0
votes
1 answer

Python Beautiful Soup 4 Scraping IPL League Table from Cricinfo

I am learning how to scrape websites using the module Beautiful Soup 4. I am trying to scrape a cricket league table and so far have used the following code. #We want to scrape the cricinfo website for the league table import requests from bs4…
0
votes
1 answer

How to send a picture (or retrieve from printers memory) through raw IPL?

I am printing labels on an Intermec printer via IP and have been asked to add our company logo to the label. In other applications I am able to break apart a bitmap and send raw ZPL, but I can't figure it out in IPL. I would also settle for saving…
SoundWaves
  • 125
  • 10
0
votes
1 answer

Convert ZPL language to IPL Language

I have a Zebra printer and an Intermec printer (PD41). The code is in ZPL language, so my Zebra printer is working, but my Intermec printer doesn't. I need to write this code in IPL language so my Intermec understands the command. I can't update to…
MCecim
  • 1
  • 1
  • 3
0
votes
1 answer

Use iplRotate the picture what I get is losing the part of left and right .why?

the code is create CreateImageHeader for two :imageSo and imageDe, then value imagedata by scanline , then rotate by judge angle, then value scanline by imagedata, I show the main code like what I said as behind,hope someone could give me the…
fading
  • 1
  • 3
0
votes
1 answer

How to send a raw IPL to intermec pm4i printer using C# via USB

Good Morning, I need to send an IPL command to usb printer, but I do not even know how to get started. Can anybody help me? the ipl code is: https://drive.google.com/file/d/0B5fjx01OqT4KcUh0LVdkZEtfWkE/view?usp=sharing
0
votes
1 answer

Intermec printer stopped printing after sending IPL commands

I tried printing a label to an Intermec printer from php using the following code: $cmds .= "C"; $cmds .= "P"; $cmds .= "E4;F4;"; $cmds .= "H0;o102,51;f0;c25;h20;w20;d0,30;"; …
bloomingsmilez
  • 411
  • 1
  • 6
  • 16
0
votes
0 answers

Create 2D bar code that contains back-tab

Is it possible, and if so how, do I create a 2D bar code using IPL, intermec programming language, that contains human readable text, TAB, and BACK-TAB. The goal is to print the bar code that can then be scanned on a different computer that we have…