Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
hardware:printers:cr805_card_printer [2026/01/03 05:54] – change heading format to markdown diamondhardware:printers:cr805_card_printer [2026/06/17 01:48] (current) – Updated cardprint url to the current one! enzi
Line 2: Line 2:
  
 This prints ID cards of standard CR80 dimensions. It does overprinting so when designing your image take that in mind (see Administration Guide pg.67 pdf pg.77). This prints ID cards of standard CR80 dimensions. It does overprinting so when designing your image take that in mind (see Administration Guide pg.67 pdf pg.77).
-Document dimensions should be **2100px 1344px** (3.5in x 2.24in @ 600dpi).+ 
 +## Dimensions 
 + 
 +- Recommended DPI: **600dpi** 
 +- Image canvas: **2100px 1344px** (3.5in x 2.24in @ 600dpi) 
 +- Image printed on card: **2023px x 1276px** (centered, 3.372in x 2.127in  @ 600dpi) 
 +  - Calculated margins: 38.5px x 34px (0.06417in x 0.05667in @ 600dpi)
  
 ## Maintenance ## Maintenance
Line 16: Line 22:
 TL;DR ~$0.70 per duplex card TL;DR ~$0.70 per duplex card
  
-| Type  | Number of Prints | Price | +| Type       | Number of Prints | Price | 
-| ----- | ---------------- | ----- | +---------- | ---------------- | ----- | 
-| CMYK  | 1000 Simplex     | ~$400 | +| CMYK       | 1000 Simplex     | ~$400 | 
-| CMYK-K| 1000 Duplex      | ~$500 | +| CMYK-K     | 1000 Duplex      | ~$500 | 
-| Retransfer | 1000 Simplex | ~$100 | +| Retransfer | 1000 Simplex     | ~$100 |
  
 ### Privacy ### Privacy
Line 29: Line 34:
 A negative image of anything you print is retained inside the machine on the spent ink ribbon. A negative image of anything you print is retained inside the machine on the spent ink ribbon.
  
-Do not use this machine to print anything you don't mind leaving inside the machine, and eventually, when the ribbon runs out, the trash. +Do not use this machine to print anything you don't mind leaving inside the machine, and eventually, when the ribbon runs out, the trash. 
 + 
 +## Printing over Web 
 + 
 +You may print cards over web using the [cardprinterd](https://codeberg.org/dma/cardprinterd) server. Access it at http://dma-printserve.user.dma.computer:2273. 
 + 
 +No drivers are needed for this web UI. Simply make a PDF and feed it into the HTML form, and the print server will automatically print it using the Windows driver and [SumatraPDF](https://www.sumatrapdfreader.org/free-pdf-reader). 
 + 
 +### Determining Orientation 
 + 
 +Orientation set on the web UI is passed to SumatraPDF, which is passed straight to the print driver. **Most of the time, you should leave this unset**, otherwise this [may cause issues](https://forum.sumatrapdfreader.org/t/sumatra-pdf-direction-question/4489). 
 + 
 +> **Note**: This option was removed on a later version of cardprinterd. The driver already automatically determines the orientation, and setting this only messes that up. 
 + 
 +## Typst Template 
 + 
 +```typst 
 +#let card(body) = page( 
 +  width: 2.24in, 
 +  height: 3.5in, 
 +  margin: (x: 0.05667in, y: 0.06417in), 
 +  rect( 
 +    width: 2.127in, 
 +    height: 3.372in, 
 +    stroke: 0.1pt, 
 +    radius: 0.125in, 
 +    inset: 0in, 
 +    body, 
 +  ), 
 +
 + 
 +#card[...] 
 +```
  
 ## Links ## Links
  
-[Supplies](https://www.entrust.com/sites/default/files/documentation/datasheets/supplies-cr805-retransfer-printer-ds.pdf) +[Supplies](https://www.entrust.com/sites/default/files/documentation/datasheets/supplies-cr805-retransfer-printer-ds.pdf) 
-[Windows driver](https://www.entrust.com/support/instant-id-card-issuance-systems/cr805-retransfer-printer-support) +[Windows driver](https://www.entrust.com/support/instant-id-card-issuance-systems/cr805-retransfer-printer-support) 
-[User Guide](https://www.entrust.com/sites/default/files/documentation/productsupport/527691-001h_cr805_userguide.pdf) +[User Guide](https://www.entrust.com/sites/default/files/documentation/productsupport/527691-001h_cr805_userguide.pdf) 
-[Cleaning Guide](https://www.entrust.com/sites/default/files/documentation/userguides/527983-001d_retransfercleaningguide_view.pdf) +[Cleaning Guide](https://www.entrust.com/sites/default/files/documentation/userguides/527983-001d_retransfercleaningguide_view.pdf) 
-[Administration Guide](https://www.entrust.com/sites/default/files/documentation/productsupport/527694-001g_cr805_instadminguide.pdf) +[Administration Guide](https://www.entrust.com/sites/default/files/documentation/productsupport/527694-001g_cr805_instadminguide.pdf) 
-[User Reference](https://www.entrust.com/sites/default/files/documentation/productsupport/527693-001en_h_cr805-user-reference.pdf)+[User Reference](https://www.entrust.com/sites/default/files/documentation/productsupport/527693-001en_h_cr805-user-reference.pdf)