Questions tagged [printer-control-language]

This tag relates to questions pertaining to PCL. PCL or Printer Control Language has been developed by Hewlett Packard and is now the de-facto standard for printer languages (laser and ink). Note: For questions about the Portable Class Library, use the tag [portable-class-library] instead, and the tag [point-cloud-library] for questions about the Point Cloud Library.

PCL has several versions. The most used versions are PCL3 (for ink devices) PCL5 and PCL6 for Laser devices. PCL has a binary file format and consists of command/data sets. The commands comprise of page, text, vector and raster commands.

Refer to http://en.wikipedia.org/wiki/Printer_Command_Language for more details.

Note:

209 questions
2
votes
1 answer

DeadObject Exception occured. V7 smart pos Terminal

I working in V7 POS Terminal(Printing Module) android Machine(V5.1.1). I Have configured the SDK (Jar file) in My application. Server Application is Installed the POS Machine. The Problem occurred during the print. Here I have included my steps. I…
2
votes
0 answers

How to convert .pdf file to .pcl in c#

I'm generating a .pdf file with my asp.net web application using itextsharp. At the same time, i need to create .pcl file with the same content. Is there any way ?
PavanR
  • 21
  • 2
2
votes
2 answers

TSC TSPL TSPL2 Printer Programming

I'm wondering if there's a function, or at least the best way, to print on a 3 labels (column) per row paper such as this: I'm asking because on the provided label design software (that came with the printer) I can input column count (along with…
rlatief
  • 715
  • 5
  • 14
2
votes
1 answer

PCL: PFH with ISS keypoints

Currently I try to compute PFH descriptors for ISS keypoints. I perform the following steps: (1) Detect keypoints with pcl::ISSKeypoint3D (2) Estimate normals of the new keypoint cloud from (1) with pcl::NormalEstimation (3) Estimate PFH for the…
2
votes
0 answers

C# cannot get printer status

C# not getting any status of printer. I am printing and want to know status of printer whether "PRINTER IS PRINTING" or "PRINTER OUT OF PAPER". Here is my code :- string filePath = "C:\\Users\\fouzan\\Desktop\\abc.txt"; …
2
votes
2 answers

How can I invoke a Model's method from view in a Xamarin PCL project

I'd like to call a method that is located in a class LoginViewModel but it is inacessible. How can I render it accessible from the Login.xaml.cs code behind so that i can call the Connexion() method ? Login.xaml
2
votes
1 answer

How to print with PCL

I have Xerox workcenter 7120, this printer is on network. I would like to print pdf file with PCL command from Linux host. My printer support PCL. But I don't know how can I send print job on my printer with PCL. I have find this document how…
simon
  • 1,180
  • 3
  • 12
  • 33
2
votes
1 answer

PCL link error in QT C++

I referred this link. And I have the same problem. PCLVisualizer addPointCloud crashes I am using Qt C++. I am using PCL1.8 (C:\Program Files\PCL1.8.0) I am using Windows 7 OS. All lib dependencies are given for PCL and VTK The application is not…
Nidhin KR
  • 45
  • 9
2
votes
1 answer

Getting flat point cloud from disparity map

I've been trying to generate a point cloud from a pair of rectified stereo images. I first obtained the disparity map using opencv's sgbm implementation. I then converted it to a point cloud using the following code, [for (int u=0; u < left.rows;…
2
votes
1 answer

How can I convert TrueType font to PCL5 Soft font?

How can I convert a TrueType font to PCL5 softfont(.spf) ? The main idea is to embed the softfont in the PCL5 printing file, then select it to use by the printer true it's stated font ID with PCL5 commands. Also if you know a better way of using…
2
votes
2 answers

C# Portable class library and reflection with nested properties

I would like to know how to set property into a nested class with reflection on Xamarin portable class library. I am working on a project with reflection on a Xamarin portable class library. I have this code: public class Customer { public…
2
votes
0 answers

How to configure the printer to print images using the printer Bluetooth device Android

I want print bill to printer Bluetooth device, It's look But It's see Here Code: private void print_image(String file) throws IOException { File fl = new File(file); OutputStream os = mBluetoothSocket .getOutputStream(); …
2
votes
0 answers

Why the PCL OrganizedMultiPlaneSegmentation are not useful.It segs few plans

This is the normals estimation of every point using covariance matrix Here is my code: pcl::PointCloud::Ptr normals(new pcl::PointCloud); pcl::NormalEstimation ne; …
lulu
  • 21
  • 3
2
votes
1 answer

Ghostscript and page margin

I have a HP Deskjet 5150 PCL compatible printer and I need to print down a PostScript file. If I view the file with gv, its margins are fine. When I try to print it with: gs -dSAFER -dNOPAUSE -dBATCH -q -sDEVICE=hpdjportable…
mghis
  • 517
  • 1
  • 5
  • 14
2
votes
0 answers

PCL: printing out partial page without ejecting

I want to be able to make my printer (HP DeskJet 1280 on USB) print out all raster data I have sent to it so far, without ejecting the page. I am sending only plain raster graphics and cursor positioning commands — no vector graphics, no text. More…
toomas
  • 520
  • 5
  • 15
1 2
3
13 14