|
|
(10 versioni intermedie di un altro utente non mostrate) |
Riga 1: |
Riga 1: |
| {{Versioni compatibili}}
| | #REDIRECT [[Migliorare l'aspetto dei font]] |
| | |
| == Introduzione ==
| |
| Generalmente Debian ha attivo un [http://en.wikipedia.org/wiki/Font_rasterization font rendering] che lascia a desiderare e i caratteri spesso sono brutti da vedere.<br>
| |
| Con le ultime modifiche alla libreria [https://it.wikipedia.org/wiki/Cairo_%28grafica%29 Grafica Cairo] è possibile attivare il '''Subpixel-hinting''' e il '''Font-smoothing''' dei caratteri con un miglioramento sensibile; il tutto creando un semplice ''file'' da collocare all'interno della nostra '''/HOME'''.
| |
| | |
| == Configurazione ==
| |
| Apriamo il nostro editor di testi preferito e incolliamo il listato che segue:
| |
| <pre><?xml version='1.0'?>
| |
| <!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
| |
| <fontconfig>
| |
| <match target="font">
| |
| <edit mode="assign" name="rgba">
| |
| <const>rgb</const>
| |
| </edit>
| |
| </match>
| |
| <match target="font">
| |
| <edit mode="assign" name="hinting">
| |
| <bool>true</bool>
| |
| </edit>
| |
| </match>
| |
| <match target="font">
| |
| <edit mode="assign" name="hintstyle">
| |
| <const>hintslight</const>
| |
| </edit>
| |
| </match>
| |
| <match target="font">
| |
| <edit mode="assign" name="antialias">
| |
| <bool>true</bool>
| |
| </edit>
| |
| </match>
| |
| <match target="font">
| |
| <edit mode="assign" name="lcdfilter">
| |
| <const>lcddefault</const>
| |
| </edit>
| |
| </match>
| |
| </fontconfig></pre>
| |
| | |
| Salviamo il file appena creato all'interno della nostra '''/HOME''' con il nome: '''.fonts.conf'''<br>
| |
| Uscite e rientrate nella sessione grafica se usate un ''Login Manager'', altrimenti riavviate il ''Server X''; ora dovreste avere il '''Subpixel-hinting''' e il '''Font-smoothing''' attivato.
| |
| | |
| == Riferimenti ==
| |
| https://wiki.debian.org/Fonts<br>
| |
| https://en.wikipedia.org/wiki/Font_smoothing<br>
| |
| https://en.wikipedia.org/wiki/Font_hinting<br>
| |
| https://en.wikipedia.org/wiki/Cairo_%28graphics%29<br>
| |
| | |
| {{Autori | Autore = [[Utente:Danielsan|Danielsan]] }}
| |
| | |
| [[Categoria:Browser]]
| |
| [[Categoria:Ottimizzazione del sistema]]
| |