aboutsummarylogtreecommitdiffstats
path: root/README.md
blob: e72250035821bd031c15f5f00b32195b52eaf470 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
cups-programme
==============

http://felics.kettenbruch.de/software/cups-print-to-programme/

This is a filter for CUPS -- the [Common Unix Printing System][1] --
that will allow to create virtual printers to open the printed file in
an application.

The use case it was created for: The author of this software has a
printer which can only print black and white, and grayscales get
pixeladet due to dithering. Having small fonts in not 100% black makes
the text hardly readable because not all pixels are printed. With this
CUPS filter, the author can print from any application into The Gimp --
[GNU Image Manipulation Program][2] -- make exactly black & white there,
and print from The Gimp to the real printer.


Installation
------------

Install the printer backend executable to the path where CUPS stores
it's backends, and name it as the executable reports in the second
word when called with no arguments (=`cups-programme`). Under Arch Linux
and probably most other UNIX systems CUPS printer backends are in
`/usr/lib/cups/backend`, so you would install this print backend to
`/usr/lib/cups/backend/cups-programme`. Make sure it is executable by
at least the user `cupsd` runs as (e.g. `lp`), but beeing executable by
all is just fine. Make sure it is only writable by `root`, otherwise
CUPS will refuse to start the filter.

Install the configuration file to `/etc/cups/cups-programme.conf`, and
make sure it is readable at least by the user `cupsd` runs as.


Adding printers
---------------

This printer can be added using the CUPS webinterface with probably one
manual intervention.

When the backend has been properly installed, CUPS will show it under
"Local Printers" when you click "Add Printer" in the webinterface.
Select the printer. In the field "Connection", you need to specify the
Device URI. This is the part where the cups-programme printer get's
it's information which programme to execute.

The Device URI to print to The Gimp is, for example:

    cups-programme:/usr/bin/gimp?u=<user>&D=%C0.0&%s

where `<user>` is the name of the user `gimp` should be run as. If not
specified, it will be run as the user CUPS is running as, which might
not be desired. The `D=%C0.0` specifies the X11 display to use. In most
cases, `:0.0` is correct (`%C` will be replaced by `:`). (See section
"Device URI syntax" for a full description of the Device URI.)

After the Device URI has been entered, select a name and optionally a
description and a location note for the printer. Then you are presented
with a list of printer manufacturers and models to choose from. Select
the manufacturer `Generic` and any generic PostScript printer. (This
selects a PPD file for the printer. Since we just want to open (or later
convert -- see section "Configuration File") the raw CUPS PostScript
output, just select any PostScript printer and then ignore the printer
options is fine.)

Adding the printer might fail with an error like

    Bad device-uri "cups-programme:/usr/bin/gimp?[...]"

In this case, when specifying the Device URI, just type in
`cups-programme:<path-to-executable>` (e.g.
`cups-programme:/usr/bin/gimp`) and add the printer as described. After
the printer has been added, stop CUPS (e.g. by entering
`systemctl cupsd stop` or `/etc/init.d/cupsd stop` as root on the
command line) and edit the file `/etc/cups/printers.conf`. Find the
printer you just added and complete the Device URI manually by editing
the entry starting with `DeviceURI`. Save your edits, and start CUPS
again (e.g. by typing `systemctl start cupsd` or
`/etc/init.d/cupsd start`).

Now the virtual printer should be functional.


Device URI syntax
-----------------

In general, the syntax for the Device URI is:

    cups-programme:<path-to-executable>?<options>

where:

* `<path-to-executable>` needs to be an absolute path, starting with `/`
  (otherwise CUPS will complain that it is not a correct URI; it expects
  a `/` after the `:`),
* `?<options>` is optional and has the syntax
  `<option>&<option>&<option>` etc. (arbitraryly many options,
  separated by `&`, are allowed).
  an `<option>` can be of the form:
  - `u=<user>` -- specifies that the executable should be run as user
    `<user>`. If `<user>` is the special word '.CUPSUSER', then the
    executable will be run as the print-job invocing user CUPS reports
    to the backend. (see also explanation of `su_variant` in the section
    "Configuration File"),
  - `g=<group>` -- specifies that the executable should be run with
    primary group `<group>` (see section "Notes"),
  - `D=<DISPLAY>` -- if set, the environment variable `DISPLAY` will be
    set to `<DISPLAY>` and exported prior execution of
    `<path-to-executable>`,
  - `t=<filetype>` -- if set, CUPS' PostScript output will be converted
    to `<filetype>`. Possible values for `<filetype>` are:
    + 'ps' (PostScript; retain CUPS' default),
    + 'pdf' (PDF; uses 'ps2pdf'),
    + 'svg' (SVG; uses 'pdf2svg'),
    + 'png' (PNG; uses ImageMagick or GraphicsMagick),
    + 'gif' (GIF; uses ImageMagick or GraphicsMagick),
    + 'jpg' (JPEG; uses ImageMagick or GraphicsMagick),
    + 'tif' (TIFF; uses ImageMagick or GraphicsMagick),
  - `<variable>=<value>` -- assigns `<value>` to the environment
    variable `<variable>` and exports `<variable>`.
  - anything else will be passed as positional arguments to
    the executable.
* On `<path-to-executable>` and all the options (except `t=<filetype>`),
  the following string substitutions are applied (see also "Notes"):
  - `%s` -> The file where the CUPS print output is saved. Use `%s` to
    pass the printed file to be opened to the executable.
  - `%.` -> ` `,
  - `%_` -> `-`,
  - `%P` -> `|`,
  - `%B` -> `\`,
  - `%H` -> `#`,
  - `%Q` -> `?`,
  - `%A` -> `&`,
  - `%C` -> `:`,
  - `%T` -> `'`,
  - `%G` -> `"`,
  - `%E` -> `=`,
  - `%M` -> `@`,
  - `%%` -> `%`.
  These replacements are carried out after cups-programme has parsed the
  Device URI, so e.g. `%E` can be used to escape a `=` from
  cups-programme's parser, e.g. to pass `u=...` as argument to the
  executable.


Configuration File
------------------

The printer backend expects a configuration file to be present at
`/etc/cups/cups-programme.conf`. This file will be bash-sourced, so
beware what you do there.

The following variables are to be set in the configuration file:
`su_variant`, `askpass_cmd` and `image_converter`.

* When a programme should be run as a specific user (`u=<user>` in the
  Device URI) or with a specific primary group (`g=<group>` in the
  Device URI), some programme like `su` or `sudo` needs to be invoked.
  However, things are not that simple, because there is no terminal
  access and so no password can be typed in easily. Here, the
  configuration variable `su_variant` comes in the game. Ut can be
  choosen between a few methods to authenticate.
  
  One possibility is to use `sudo` and to configure your system's sudo
  such that no password is required. Another possibility is to use a
  graphical password entry -- via a graphical programme, or via `sudo`
  with askpass (`su_variant=sudo-askpass`).

* When `su_variant=sudo-askpass` is set, then `askpass_cmd` needs to be
  set and needs to contain a full path to an askpass executable.

* If the `t=<filetype>` option in the Device URI specifies a pixel
  graphic format, then `image_converter` must be set. It specifies if
  ImageMagick or GraphicsMagick is to be used when converting to a pixel
  graphic.

Read the comments in the configuration file for further details, e.g.
supported values.


Notes
-----

* The `%`-substitutions in the options in the Device URI might become
  necessary if the characters are breaking the Device URI. Also, `-` in
  the Device URI may make problems due to interpretation in scripts, so
  it is advised to use `%_` instead.

* Setting a primary group to run the command as is only possible when
  the CUPS filter is run as root, and only with some `su_variant`
  settings (for details, see comments in the configuration file).

* When adding a printer with this backend via CUPS, you might get an
  error like
  
    Bad device-uri "cups-programme:/usr/bin/gimp?u=user&D=:0.0&%s".
  
  When this happens, add the printer with a very basic Device URI like
  `cups-programme:/usr/bin/gimp`, and after adding the printer, edit
  `/etc/cups/printers.conf` manually and change the `DeviceURI` to the
  desired value. (Stop `cupsd` before, and restart cupsd after editing
  `/etc/cups/printers.conf`.)


[1]: http://cups.org/
[2]: http://gimp.org/