harbour-seaprint/README.md

93 lines
3.1 KiB
Markdown
Raw Permalink Normal View History

2020-09-05 18:44:59 +03:00
# SeaPrint
Network printing for Sailfish OS
![SeaPrint icon](icons/172x172/harbour-seaprint.png)
2021-06-13 16:55:44 +03:00
Print PDFs and images over IPP (Internet Printing Protocol).
Most, but not all, IPP-capable printers are supported.
A minority of printers support only PCL and/or their own proprietary formats, these are not supported.
## Format support
2021-06-13 23:50:29 +03:00
For PDFs or plaintext, your printer needs to support one of the following formats:
2021-06-13 16:55:44 +03:00
* PDF
2021-12-04 16:34:35 +03:00
* Postscript
* PWG-raster
* URF-raster
2021-06-13 16:55:44 +03:00
2021-12-04 16:34:35 +03:00
For Postscript, your printer needs to support Postscript natively. (SeaPrint just sends it as-is)
2021-06-13 16:55:44 +03:00
For printing "Office" files, like .doc(x) and odt, you need to install
`calligraconverter` (from the `calligra` package in Sailfish OS 4.2 onwards).
2021-12-04 16:34:35 +03:00
Then the printer support follows that of PDF.
2021-06-13 16:55:44 +03:00
For images, your printer needs to support one of the following formats:
* PNG
* JPEG
* PWG-raster
* URF-raster
* PDF
2021-12-04 16:34:35 +03:00
* Postscript
2021-06-13 16:55:44 +03:00
For printing JPEG images, transferring the unaltered image has priority and the printer does the scaling.
Other image formats are lossless and SeaPrint does scale-and-rotate to fit, so JPEG has lowest prio there.
2021-12-04 16:34:35 +03:00
Printers with any of these IPP certifications and derivative standards should likely be supported:
2021-06-13 16:55:44 +03:00
* IPP Everywhere
* AirPrint
* Mopria
* WiFi Direct
(obviously SeaPrint is unaffiliated and uncertified)
2021-12-04 18:22:10 +03:00
## Dealing with misbehaving printers
SeaPrint, in contrast to other printing clients, is not concerned with dealing with the idiosyncrasies of individual printers.
If some manufacturer can't make a reasonably well-behaved printer that's on them, not something for SeaPrint to cover for.
There is however a possibility for you, the user, to override certain attributes (to fix names, claimed format support etc.) in the IPP data structure.
To see what your printer sent, aka "the debug info", tap it 5 times rapidly without any document selected. The format is a SeaPrint-specific JSON equivalent representation of the IPP binary data.
Create the file `/home/$USER/.config/net.attah/seaprint/overrides`. (NB: New location for 1.0, and may move again)
This file should contain a JSON structure, with the outermost key(s) being "what attribute to match on" (uuid recommended if available), the next level is "if this value matches". Everything beneath that is what to inject/replace into the printer's attributes (see debug info above).
Example:
2021-12-14 22:37:49 +03:00
```JSON
2021-12-04 18:22:10 +03:00
{
"printer-uuid": {
"urn:uuid:xxx-yyy-zzz-111-1234567890": {
"printer-name": {
"tag": 54,
"value": "A better name"
},
"document-format-supported": {
"tag": 73,
"value": [
"application/octet-stream", "application/pdf"
]
2021-12-14 22:37:49 +03:00
},
2021-12-04 18:22:10 +03:00
"some-other-attribute-name": {
2021-12-14 22:37:49 +03:00
"tag": 42,
"value": "some-value"
2021-12-04 18:22:10 +03:00
}
2021-12-14 22:37:49 +03:00
},
"urn:uuid:other-printer-uuid": {
...
2021-12-04 18:22:10 +03:00
}
2021-12-14 22:37:49 +03:00
},
"other-attribute-to-match-other-printer-on": {
...
2021-12-04 18:22:10 +03:00
}
}
```
## Dealing with printers using other protocols
SeaPrint only supports IPP, not port 9100 pjl/pcl raw, lpd/lpr or anything else.
Just use a PAPPL or CUPS as an intermediary. A shared printer there is IPP by definition.