Mobile app version of vmapp.org
Login or Join
Pierce403

: How to prepare fonts for an online printable poster I want to make a website that people come and type a sentence and I make a poster out of it, print it, and send it to them. I was thinking

@Pierce403

Posted in: #Html #Posters #PrintDesign

I want to make a website that people come and type a sentence and I make a poster out of it, print it, and send it to them. I was thinking of exporting as PDF (as recommended in this SO question).

I know I can make a box with html divs and color it and put some web font, but I wonder:


How do I go from HTML to TIFF? ( I've read TIFF is the best format for poster print)
Can I use web fonts?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Pierce403

1 Comments

Sorted by latest first Latest Oldest Best

 

@Kaufman565

TIFF is only the best format for poster print if you are printing a photograph or some other raster image e.g. an image straight from Photoshop. Converting to TIFF would rasterise text unnecessarily, which is bad for print quality (or at best at very high resolutions, neutral).

You'd be better off either:


converting to a mostly-vector PDF, using one of the many available server side html to CSS converters, or...
printing from HTML directly using a print stylesheet.


I'd recommend the former if you need to edit or set specifications in the PDF before printing, like setting colour profiles or bleed. I'd recommend the latter for simplicity if you don't need any of that or don't know what any of that means :-). Don't forget that unlike some of what you link to, if you're printing the posters yourself, you've got control over the software, settings etc.

Make sure that any raster images in what will become the print version of the page are high resolution (usually 300 PPI), and be aware of the difference between RGB and CMYK colours - else you might get disappointingly washed out looking colours, particularly pure reds, blues and greens.

For web fonts:


If you use the former option, it'll vary from software to software, but you'll definitely be able to use web fonts if you also have the font installed on the machine you're printing from. If that's not an option, look for a converter that has a feature to embed web fonts in the PDF - this question might be relevant - (and be aware that there might be legal licensing issues about this since serving / being served fonts and embedding fonts are usually coverred by different types of licence - though if you only use the PDF to print and never distribute the PDF you might be okay).
For the latter, you just need to make sure you're printing from an up-to-date browser that can print web fonts. According to this thread most browsers can cope, and since you're doing the printing, you can just make sure you use a browser that works.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme