/* Copyright (C) 2001-2023 Artifex Software, Inc. All Rights Reserved. This software is provided AS-IS with no warranty, either express or implied. This software is distributed under license and may not be copied, modified or distributed except as expressly authorized under the terms of the license contained in the file LICENSE in this distribution. Refer to licensing information at http://www.artifex.com or contact Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco, CA 94129, USA, for further information. */ /* HP LaserJet/DeskJet driver for Ghostscript */ #include "gdevprn.h" #include "gdevdljm.h" /* * Thanks for various improvements to: * Jim Mayer (mayer@wrc.xerox.com) * Jan-Mark Wams (jms@cs.vu.nl) * Frans van Hoesel (hoesel@chem.rug.nl) * George Cameron (g.cameron@biomed.abdn.ac.uk) * Nick Duffek (nsd@bbc.com) * Thanks for the FS-600 driver to: * Peter Schildmann (peter.schildmann@etechnik.uni-rostock.de) * Thanks for the LJIIID duplex capability to: * PDP (Philip) Brown (phil@3soft-uk.com) * Thanks for the OCE 9050 driver to: * William Bader (wbader@EECS.Lehigh.Edu) * Thanks for the LJ4D duplex capability to: * Les Johnson */ /* * You may select a default resolution of 75, 100, 150, 300, or * (LJ4 only) 600 DPI in the makefile, or an actual resolution * on the gs command line. * * If the preprocessor symbol A4 is defined, the default paper size is * the European A4 size; otherwise it is the U.S. letter size (8.5"x11"). * * To determine the proper "margin" settings for your printer, see the * file align.ps. */ /* Define the default, maximum resolutions. */ #ifdef X_DPI # define X_DPI2 X_DPI #else # define X_DPI 300 # define X_DPI2 600 #endif #ifdef Y_DPI # define Y_DPI2 Y_DPI #else # define Y_DPI 300 # define Y_DPI2 600 #endif /* * For all DeskJet Printers: * * Maximum printing width = 2400 dots = 8" * Maximum recommended printing height = 3100 dots = 10 1/3" * * All Deskjets have 1/2" unprintable bottom margin. * The recommendation comes from the HP Software Developer's Guide for * the DeskJet 500, DeskJet PLUS, and DeskJet printers, version C.01.00 * of 12/1/90. * * Note that the margins defined just below here apply only to the DeskJet; * the paper size, width and height apply to the LaserJet as well. */ /* Margins are left, bottom, right, top. */ /* from Frans van Hoesel hoesel@rugr86.rug.nl. */ /* A4 has a left margin of 1/8 inch and at a printing width of * 8 inch this give a right margin of 0.143. The 0.09 top margin is * not the actual margin - which is 0.07 - but compensates for the * inexact paperlength which is set to 117 10ths. * Somebody should check for letter sized paper. I left it at 0.07". */ #define DESKJET_MARGINS_LETTER (float)0.2, (float)0.45, (float)0.3, (float)0.05 #define DESKJET_MARGINS_A4 (float)0.125, (float)0.5, (float)0.143, (float)0.09 /* Similar margins for the LaserJet. */ /* These are defined in the PCL 5 Technical Reference Manual. */ /* Note that for PCL 5 printers, we get the printer to translate the */ /* coordinate system: the margins only define the unprintable area. */ #define LASERJET_MARGINS_A4 (float)0.167, (float)0.167, (float)0.167, (float)0.167 #define LASERJET_MARGINS_LETTER (float)0.167, (float)0.167, (float)0.167, (float)0.167 /* See gdevdljm.h for the definitions of the PCL_ features. */ /* The device descriptors */ static dev_proc_open_device(hpjet_open); static dev_proc_close_device(hpjet_close); static dev_proc_close_device(ljet4pjl_close); static dev_proc_print_page_copies(djet_print_page_copies); static dev_proc_print_page_copies(djet500_print_page_copies); static dev_proc_print_page_copies(fs600_print_page_copies); static dev_proc_print_page_copies(ljet_print_page_copies); static dev_proc_print_page_copies(ljetplus_print_page_copies); static dev_proc_print_page_copies(ljet2p_print_page_copies); static dev_proc_print_page_copies(ljet3_print_page_copies); static dev_proc_print_page_copies(ljet3d_print_page_copies); static dev_proc_print_page_copies(ljet4_print_page_copies); static dev_proc_print_page_copies(ljet4d_print_page_copies); static dev_proc_print_page_copies(lp2563_print_page_copies); static dev_proc_print_page_copies(oce9050_print_page_copies); static dev_proc_print_page_copies(ljet4pjl_print_page_copies); static dev_proc_get_params(hpjet_get_params); static dev_proc_put_params(hpjet_put_params); /* Since the print_page doesn't alter the device, this device can print in the background */ static void hpjet_initialize_device_procs(gx_device *dev) { gdev_prn_initialize_device_procs_mono_bg(dev); set_dev_proc(dev, open_device, hpjet_open); set_dev_proc(dev, close_device, hpjet_close); set_dev_proc(dev, get_params, hpjet_get_params); set_dev_proc(dev, put_params, hpjet_put_params); } /* Since the print_page doesn't alter the device, this device can print in the background */ static void ljet4pjl_initialize_device_procs(gx_device *dev) { gdev_prn_initialize_device_procs_mono_bg(dev); set_dev_proc(dev, open_device, hpjet_open); set_dev_proc(dev, close_device, ljet4pjl_close); } typedef struct gx_device_hpjet_s gx_device_hpjet; struct gx_device_hpjet_s { gx_device_common; gx_prn_device_common; int MediaPosition; bool MediaPosition_set; bool ManualFeed; bool ManualFeed_set; bool Tumble; }; #define HPJET_DEVICE(init, dname, w10, h10, xdpi, ydpi, lm, bm, rm, tm, color_bits, print_page_copies)\ { prn_device_std_margins_body_copies(gx_device_hpjet, init, dname, \ w10, h10, xdpi, ydpi, lm, tm, lm, bm, rm, tm, color_bits, \ print_page_copies), \ 0, false, false, false, false } const gx_device_hpjet gs_deskjet_device = HPJET_DEVICE(hpjet_initialize_device_procs, "deskjet", DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI, Y_DPI, 0, 0, 0, 0, /* margins filled in by hpjet_open */ 1, djet_print_page_copies); const gx_device_hpjet gs_djet500_device = HPJET_DEVICE(hpjet_initialize_device_procs, "djet500", DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI, Y_DPI, 0, 0, 0, 0, /* margins filled in by hpjet_open */ 1, djet500_print_page_copies); const gx_device_hpjet gs_fs600_device = HPJET_DEVICE(hpjet_initialize_device_procs, "fs600", DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI2, Y_DPI2, 0.23, 0.0, 0.23, 0.04, /* margins */ 1, fs600_print_page_copies); const gx_device_hpjet gs_laserjet_device = HPJET_DEVICE(hpjet_initialize_device_procs, "laserjet", DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI, Y_DPI, 0.05, 0.25, 0.55, 0.25, /* margins */ 1, ljet_print_page_copies); const gx_device_hpjet gs_ljetplus_device = HPJET_DEVICE(hpjet_initialize_device_procs, "ljetplus", DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI, Y_DPI, 0.05, 0.25, 0.55, 0.25, /* margins */ 1, ljetplus_print_page_copies); const gx_device_hpjet gs_ljet2p_device = HPJET_DEVICE(hpjet_initialize_device_procs, "ljet2p", DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI, Y_DPI, 0.25, 0.25, 0.25, 0.0, /* margins */ 1, ljet2p_print_page_copies); const gx_device_hpjet gs_ljet3_device = HPJET_DEVICE(hpjet_initialize_device_procs, "ljet3", DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI, Y_DPI, 0.20, 0.25, 0.25, 0.25, /* margins */ 1, ljet3_print_page_copies); const gx_device_hpjet gs_ljet3d_device = HPJET_DEVICE(hpjet_initialize_device_procs, "ljet3d", DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI, Y_DPI, 0.20, 0.25, 0.25, 0.25, /* margins */ 1, ljet3d_print_page_copies); const gx_device_hpjet gs_ljet4_device = HPJET_DEVICE(hpjet_initialize_device_procs, "ljet4", DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI2, Y_DPI2, 0, 0, 0, 0, /* margins */ 1, ljet4_print_page_copies); const gx_device_hpjet gs_ljet4d_device = HPJET_DEVICE(hpjet_initialize_device_procs, "ljet4d", DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI2, Y_DPI2, 0, 0, 0, 0, /* margins */ 1, ljet4d_print_page_copies); const gx_device_hpjet gs_lp2563_device = HPJET_DEVICE(hpjet_initialize_device_procs, "lp2563", DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI, Y_DPI, 0, 0, 0, 0, /* margins */ 1, lp2563_print_page_copies); const gx_device_hpjet gs_oce9050_device = HPJET_DEVICE(hpjet_initialize_device_procs, "oce9050", 24 * 10, 24 * 10, /* 24 inch roll (can print 32" also) */ 400, 400, /* 400 dpi */ 0, 0, 0, 0, /* margins */ 1, oce9050_print_page_copies); const gx_device_printer gs_ljet4pjl_device = prn_device_copies(ljet4pjl_initialize_device_procs, "ljet4pjl", DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI2, Y_DPI2, 0, 0, 0, 0, /* margins */ 1, ljet4pjl_print_page_copies); /* Open the printer, adjusting the margins if necessary. */ static int hpjet_open(gx_device * pdev) { /* Change the margins if necessary. */ gx_device_printer *const ppdev = (gx_device_printer *)pdev; const float *m = 0; bool move_origin = true; if (ppdev->printer_procs.print_page_copies == djet_print_page_copies || ppdev->printer_procs.print_page_copies == djet500_print_page_copies ) { static const float m_a4[4] = {DESKJET_MARGINS_A4}; static const float m_letter[4] = {DESKJET_MARGINS_LETTER}; m = (gdev_pcl_paper_size(pdev) == PAPER_SIZE_A4 ? m_a4 : m_letter); } else if (ppdev->printer_procs.print_page_copies == oce9050_print_page_copies || ppdev->printer_procs.print_page_copies == lp2563_print_page_copies ); else { /* LaserJet */ static const float m_a4[4] = {LASERJET_MARGINS_A4}; static const float m_letter[4] = {LASERJET_MARGINS_LETTER}; m = (gdev_pcl_paper_size(pdev) == PAPER_SIZE_A4 ? m_a4 : m_letter); move_origin = false; } if (m != 0) gx_device_set_margins(pdev, m, move_origin); /* If this is a LJIIID, enable Duplex. */ if (ppdev->printer_procs.print_page_copies == ljet3d_print_page_copies) ppdev->Duplex = true, ppdev->Duplex_set = 0; if (ppdev->printer_procs.print_page_copies == ljet4d_print_page_copies) ppdev->Duplex = true, ppdev->Duplex_set = 0; return gdev_prn_open(pdev); } /* hpjet_close is only here to eject odd numbered pages in duplex mode, */ /* and to reset the printer so the ink cartridge doesn't clog up. */ static int hpjet_close(gx_device * pdev) { gx_device_printer *const ppdev = (gx_device_printer *)pdev; int code = gdev_prn_open_printer(pdev, 1); if (code < 0) return code; if (ppdev->PageCount > 0) { if (ppdev->Duplex_set >= 0 && ppdev->Duplex) gp_fputs("\033&l0H", ppdev->file); gp_fputs("\033E", ppdev->file); } return gdev_prn_close(pdev); } static int ljet4pjl_close(gx_device *pdev) { gx_device_printer *const ppdev = (gx_device_printer *)pdev; int code = gdev_prn_open_printer(pdev, 1); if (code < 0) return code; if ( ppdev->Duplex_set >= 0 && ppdev->Duplex ) { code = gdev_prn_open_printer(pdev, 1); if (code < 0) return code; gp_fputs("\033&l0H", ppdev->file) ; } gp_fputs("\033%-12345X", ppdev->file); return gdev_prn_close(pdev); } /* ------ Internal routines ------ */ /* Make an init string that contains paper tray selection. The resulting init string is stored in buf, so make sure that buf is at least 5 bytes larger than str. */ static void hpjet_make_init(gx_device_printer *pdev, char buf[80], const char *str) { gx_device_hpjet *dev = (gx_device_hpjet *)pdev; int paper_source = -1; if (dev->ManualFeed_set && dev->ManualFeed) paper_source = 2; else if (dev->MediaPosition_set && dev->MediaPosition >= 0) paper_source = dev->MediaPosition; if (paper_source >= 0) gs_snprintf(buf, 80, "%s\033&l%dH", str, paper_source); else gs_snprintf(buf, 80, "%s", str); } /* The DeskJet can compress (mode 2) */ static int djet_print_page_copies(gx_device_printer * pdev, gp_file * prn_stream, int num_copies) { char init[80]; hpjet_make_init(pdev, init, "\033&k1W\033*b2M"); return dljet_mono_print_page_copies(pdev, prn_stream, num_copies, 300, PCL_DJ_FEATURES, init, init, false); } /* The DeskJet500 can compress (modes 2&3) */ static int djet500_print_page_copies(gx_device_printer * pdev, gp_file * prn_stream, int num_copies) { char init[80]; hpjet_make_init(pdev, init, "\033&k1W"); return dljet_mono_print_page_copies(pdev, prn_stream, num_copies, 300, PCL_DJ500_FEATURES, init, init, false); } /* The Kyocera FS-600 laser printer (and perhaps other printers */ /* which use the PeerlessPrint5 firmware) doesn't handle */ /* ESC&l#u and ESC&l#Z correctly. */ static int fs600_print_page_copies(gx_device_printer * pdev, gp_file * prn_stream, int num_copies) { int dots_per_inch = (int)pdev->y_pixels_per_inch; char base_init[60]; char init[80]; gs_snprintf(base_init, sizeof(base_init), "\033*r0F\033&u%dD", dots_per_inch); hpjet_make_init(pdev, init, base_init); return dljet_mono_print_page_copies(pdev, prn_stream, num_copies, dots_per_inch, PCL_FS600_FEATURES, init, init, false); } /* The LaserJet series II can't compress */ static int ljet_print_page_copies(gx_device_printer * pdev, gp_file * prn_stream, int num_copies) { char init[80]; hpjet_make_init(pdev, init, "\033*b0M"); return dljet_mono_print_page_copies(pdev, prn_stream, num_copies, 300, PCL_LJ_FEATURES, init, init, false); } /* The LaserJet Plus can't compress */ static int ljetplus_print_page_copies(gx_device_printer * pdev, gp_file * prn_stream, int num_copies) { char init[80]; hpjet_make_init(pdev, init, "\033*b0M"); return dljet_mono_print_page_copies(pdev, prn_stream, num_copies, 300, PCL_LJplus_FEATURES, init, init, false); } /* LaserJet series IIp & IId compress (mode 2) */ /* but don't support *p+ or *b vertical spacing. */ static int ljet2p_print_page_copies(gx_device_printer * pdev, gp_file * prn_stream, int num_copies) { char init[80]; hpjet_make_init(pdev, init, "\033*r0F\033*b2M"); return dljet_mono_print_page_copies(pdev, prn_stream, num_copies, 300, PCL_LJ2p_FEATURES, init, init, false); } /* All LaserJet series IIIs (III,IIId,IIIp,IIIsi) compress (modes 2&3) */ /* They also need their coordinate system translated slightly. */ static int ljet3_print_page_copies(gx_device_printer * pdev, gp_file * prn_stream, int num_copies) { char init[80]; hpjet_make_init(pdev, init, "\033&l-180u36Z\033*r0F"); return dljet_mono_print_page_copies(pdev, prn_stream, num_copies, 300, PCL_LJ3_FEATURES, init, init, false); } /* LaserJet IIId is same as LaserJet III, except for duplex */ static int ljet3d_print_page_copies(gx_device_printer * pdev, gp_file * prn_stream, int num_copies) { char init[80]; char even_init[80]; gx_device_hpjet *dev = (gx_device_hpjet *)pdev; bool tumble=dev->Tumble; hpjet_make_init(pdev, init, "\033&l-180u36Z\033*r0F"); gs_snprintf(even_init, sizeof(even_init), "\033&l180u36Z\033*r0F"); return dljet_mono_print_page_copies(pdev, prn_stream, num_copies, 300, PCL_LJ3D_FEATURES, init, even_init, tumble); } /* LaserJet 4 series compresses, and it needs a special sequence to */ /* allow it to specify coordinates at 600 dpi. */ /* It too needs its coordinate system translated slightly. */ static int ljet4_print_page_copies(gx_device_printer * pdev, gp_file * prn_stream, int num_copies) { int dots_per_inch = (int)pdev->y_pixels_per_inch; char base_init[60]; char init[80]; gs_snprintf(base_init, sizeof(base_init), "\033&l-180u36Z\033*r0F\033&u%dD", dots_per_inch); if (gdev_pcl_page_orientation((gx_device *) pdev) == PAGE_ORIENTATION_LANDSCAPE) gs_snprintf(base_init, sizeof(base_init), "\033&l0u140Z\033*r0F\033&u%dD", dots_per_inch); hpjet_make_init(pdev, init, base_init); return dljet_mono_print_page_copies(pdev, prn_stream, num_copies, dots_per_inch, PCL_LJ4_FEATURES, init, init, false); } static int ljet4d_print_page_copies(gx_device_printer * pdev, gp_file * prn_stream, int num_copies) { int dots_per_inch = (int)pdev->y_pixels_per_inch; char base_init[60]; char init[80]; char even_init[80]; gx_device_hpjet *dev = (gx_device_hpjet *)pdev; bool tumble=dev->Tumble; /* Put out per-page initialization. */ /* Modified by karsten@sengebusch.de in duplex mode the sheet is alread in process, so there are some commands which must not be sent to the printer for the 2nd page, as this commands will cause the printer to eject the sheet with only the 1st page printed. This commands are: \033&l%dA (setting paper size) \033&l%dH (setting paper tray) in simplex mode we set this parameters for each page, in duplex mode we set this parameters for each odd page (paper tray is set by "hpjet_make_init") */ gs_snprintf(base_init, sizeof(base_init), "\033&l-180u36Z\033*r0F\033&u%dD", dots_per_inch); hpjet_make_init(pdev, init, base_init); gs_snprintf(even_init, sizeof(even_init), "\033&l180u36Z\033*r0F\033&u%dD", dots_per_inch); return dljet_mono_print_page_copies(pdev, prn_stream, num_copies, dots_per_inch, PCL_LJ4D_FEATURES, init,even_init,tumble); } /* LaserJet 4 series compresses, and it needs a special sequence to */ /* allow it to specify coordinates at 600 dpi. */ /* It too needs its coordinate system translated slightly. */ static int ljet4pjl_print_page_copies(gx_device_printer *pdev, gp_file *prn_stream, int num_copies) { int dots_per_inch = (int)pdev->y_pixels_per_inch; char real_init[60]; gs_snprintf(real_init, sizeof(real_init), "\033&l-180u36Z\033*r0F\033&u%dD", dots_per_inch); return dljet_mono_print_page_copies(pdev, prn_stream, num_copies, dots_per_inch, PCL_LJ4PJL_FEATURES, real_init, real_init, false); } /* The 2563B line printer can't compress */ /* and doesn't support *p+ or *b vertical spacing. */ static int lp2563_print_page_copies(gx_device_printer * pdev, gp_file * prn_stream, int num_copies) { char init[80]; hpjet_make_init(pdev, init, "\033*b0M"); return dljet_mono_print_page_copies(pdev, prn_stream, num_copies, 300, PCL_LP2563B_FEATURES, init, init, false); } /* The Oce line printer has TIFF compression */ /* and doesn't support *p+ or *b vertical spacing. */ static int oce9050_print_page_copies(gx_device_printer * pdev, gp_file * prn_stream, int num_copies) { int code; char init[80]; /* Switch to HP_RTL. */ gp_fputs("\033%1B", prn_stream); /* Enter HPGL/2 mode */ gp_fputs("BP", prn_stream); /* Begin Plot */ gp_fputs("IN;", prn_stream); /* Initialize (start plot) */ gp_fputs("\033%1A", prn_stream); /* Enter PCL mode */ hpjet_make_init(pdev, init, "\033*b0M"); code = dljet_mono_print_page_copies(pdev, prn_stream, num_copies, 400, PCL_OCE9050_FEATURES, init, init, false); /* Return to HPGL/2 mode. */ gp_fputs("\033%1B", prn_stream); /* Enter HPGL/2 mode */ if (code == 0) { gp_fputs("PU", prn_stream); /* Pen Up */ gp_fputs("SP0", prn_stream); /* Pen Select */ gp_fputs("PG;", prn_stream); /* Advance Full Page */ gp_fputs("\033E", prn_stream); /* Reset */ } return code; } static int hpjet_get_params(gx_device *pdev, gs_param_list *plist) { gx_device_hpjet *dev = (gx_device_hpjet *)pdev; int code = gdev_prn_get_params(pdev, plist); if (code >= 0) { code = param_write_bool(plist, "ManualFeed", &dev->ManualFeed); } if (code >= 0) { code = param_write_int(plist, "MediaPosition", &dev->MediaPosition); } if (code >=0) code = param_write_bool(plist, "Tumble", &dev->Tumble); return code; } static int hpjet_put_params(gx_device *pdev, gs_param_list *plist) { gx_device_hpjet *dev = (gx_device_hpjet *)pdev; int code; bool ManualFeed; bool ManualFeed_set = false; int MediaPosition; bool MediaPosition_set = false; bool Tumble; code = param_read_bool(plist, "ManualFeed", &ManualFeed); if (code == 0) ManualFeed_set = true; if (code >= 0) { code = param_read_int(plist, "MediaPosition", &MediaPosition); if (code == 0) MediaPosition_set = true; else if (code < 0) { if (param_read_null(plist, "MediaPosition") == 0) { code = 0; } } } if (code>=0) { code=param_read_bool(plist,"Tumble",&Tumble); if (code != 0) Tumble = false; /* default: no tumble */ } if (code >= 0) code = gdev_prn_put_params(pdev, plist); if (code >= 0) { dev->Tumble=Tumble; if (ManualFeed_set) { dev->ManualFeed = ManualFeed; dev->ManualFeed_set = true; } if (MediaPosition_set) { dev->MediaPosition = MediaPosition; dev->MediaPosition_set = true; } } return code; }