Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#1 Le 26/11/2011, à 20:25

CathPazou

Polices de caractères dans firefox 8 et thunderbird 7.0.1

Hello,
Depuis que j'ai installé des nouvelles polices de caractères dans la configuration du système, celles de firefox et thunderbird sont devenues vraiment vilaines.
Toujours dans la config du système, j'ai tout mis en "déjà vu", mais rien n'a changé dans ces applications.
Quelqu'un a une idée ?
Merci


Laptop : Clevo 970PU 64-bit - LM 19.1 - Cinnamon
Processeur : 4 x Intel - CPU N4200 @ 1.10 GHz Max
Mémoire : 3,7 Gio de mémoire vive
Navigateur : Opera 60, Chromium & Firefox Quantum 64

Hors ligne

#2 Le 27/11/2011, à 09:19

CathPazou

Re : Polices de caractères dans firefox 8 et thunderbird 7.0.1

Au vu des réponses, je me doute que ça reste un sujet délicat.

Entre temps, j'ai trouvé le module complémentaire génial "theme font & size changer" pour mettre la police de son choix !


Laptop : Clevo 970PU 64-bit - LM 19.1 - Cinnamon
Processeur : 4 x Intel - CPU N4200 @ 1.10 GHz Max
Mémoire : 3,7 Gio de mémoire vive
Navigateur : Opera 60, Chromium & Firefox Quantum 64

Hors ligne

#3 Le 28/11/2011, à 09:48

CathPazou

Re : Polices de caractères dans firefox 8 et thunderbird 7.0.1

Bon pour les personnes qui chercheraient à résoudre ce problème via le moteur de recherche et tomberaient sur mon post, voilà la solution de "PainGiver" du forum Kubuntu :

Je le cite :

"I love font rendering on my Kubuntu (better, in someway, than windows 7). You can try out my .fonts.conf (make sure to back up yours first). Copy codes below to your .fonts.conf file, save it, logout, login to see changes."

<?xml version='1.0'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig>
 <!-- enable auto-hinting-->
 <match target="font">
  <edit mode="assign" name="autohint">
   <bool>true</bool>
  </edit>
 </match>  
 <!-- enable hint style (hintfull, hintmedium, hintslight and hintnone), hintslight is recommended for autohinter-->
 <match target="font">
  <edit mode="assign" name="hintstyle">
   <const>hintmedium</const>
  </edit>
 </match>
 <!-- enable subpixel rendering -->
   <match target="font">
    <edit name="rgba" mode="assign">
      <const>rgb</const>
    </edit>
  </match>
 <!-- enable the LCD filter, which is designed to reduce colour fringing when using subpixel rendering -->
 <match target="font">
  <edit mode="assign" name="lcdfilter">
   <const>lcddefault</const>
  </edit>
 </match>  
<!-- To fix Calibri font -->
 <match target="font">
  <edit mode="assign" name="embeddedbitmap">
   <bool>false</bool>
  </edit>
 </match>
 <!-- enable normal hinting, using freetype's Byte-Code Interpreter -->
 <match target="font">
  <edit mode="assign" name="hinting">
   <bool>true</bool>
  </edit>
 </match>
  <!-- Disable autohint for bold fonts -->
 <match target="font">
  <test compare="more" name="weight">
   <const>medium</const>
  </test>
  <edit mode="assign" name="autohint">
   <bool>false</bool>
  </edit>
 </match>
 <!-- Set font DPI -->
 <match target="pattern">
  <edit mode="assign" name="dpi">
   <double>96</double>
  </edit>
 </match>
 <!-- Tweak Courier -->
 <match target="pattern" name="family">
  <test name="family" qual="any">
   <string>Courier</string>
  </test>
  <edit mode="assign" name="lcdfilter">
   <const>lcdlegacy</const>
  </edit>
 </match>
 <!-- Tweak Courier New -->
 <match target="pattern" name="family">
  <test name="family" qual="any">
   <string>Courier New</string>
  </test>
  <edit mode="assign" name="lcdfilter">
   <const>lcdlegacy</const>
  </edit>
 </match>
 <!-- Replace Luxi Sans with a better-looking font -->
 <match target="pattern" name="family">
  <test name="family" qual="any">
   <string>Luxi Sans</string>
  </test>
  <edit mode="assign" name="family">
   <string>Liberation Sans</string>
  </edit>
 </match>
 <match target="pattern" name="family">
  <test name="family" qual="any">
   <string>fixed</string>
  </test>
  <edit mode="assign" name="family">
   <string>monospace</string>
  </edit>
 </match>
 <!-- Create difference between small Candara and small Candara bold -->
 <match target="pattern" name="family">
  <test name="family" qual="any">
   <string>Candara</string>
  </test>
  <test compare="less_eq" name="size">
   <double>10</double>
  </test>
  <test compare="more" name="weight">
   <const>medium</const>
  </test>
  <edit mode="assign" name="embolden">
   <bool>true</bool>
  </edit>
 </match>
 <!-- make fonts look better with lcdlegacy -->
 <match target="font">
  <test compare="eq" name="family">
   <string>Andale Mono</string>
  </test>
  <test compare="less" name="weight">
   <const>medium</const>
  </test>
  <test compare="less_eq" name="pixelsize">
   <double>7</double>
  </test>
  <edit mode="assign" name="antialias">
   <bool>false</bool>
  </edit>
 </match>
 <match target="font">
  <test compare="eq" name="family">
   <string>Arial</string>
  </test>
  <test compare="less" name="weight">
   <const>medium</const>
  </test>
  <test compare="less_eq" name="pixelsize">
   <double>7</double>
  </test>
  <edit mode="assign" name="antialias">
   <bool>false</bool>
  </edit>
 </match>
 <match target="font">
  <test compare="eq" name="family">
   <string>Comic Sans MS</string>
  </test>
  <test compare="less" name="weight">
   <const>medium</const>
  </test>
  <test compare="less_eq" name="pixelsize">
   <double>7</double>
  </test>
  <edit mode="assign" name="antialias">
   <bool>false</bool>
  </edit>
 </match>
 <match target="font">
  <test compare="eq" name="family">
   <string>Georgia</string>
  </test>
  <test compare="less" name="weight">
   <const>medium</const>
  </test>
  <test compare="less_eq" name="pixelsize">
   <double>7</double>
  </test>
  <edit mode="assign" name="antialias">
   <bool>false</bool>
  </edit>
 </match>
 <match target="font">
  <test compare="eq" name="family">
   <string>Times New Roman</string>
  </test>
  <edit mode="assign" name="lcdfilter">
   <const>lcdlegacy</const>
  </edit>
 </match>
 <match target="font">
  <test compare="eq" name="family">
   <string>Trebuchet MS</string>
  </test>
  <test compare="less" name="weight">
   <const>medium</const>
  </test>
  <test compare="less_eq" name="pixelsize">
   <double>7</double>
  </test>
  <edit mode="assign" name="antialias">
   <bool>false</bool>
  </edit>
 </match>
 <!-- Reject bitmap fonts in favour of Truetype, Postscript, etc. -->
 <selectfont>
  <rejectfont>
   <pattern>
    <patelt name="scalable">
     <bool>false</bool>
    </patelt>
   </pattern>
  </rejectfont>
 </selectfont>
 <match target="font">
  <edit mode="assign" name="rgba">
   <const>rgb</const>
  </edit>
 </match>
 <match target="font">
  <edit mode="assign" name="antialias">
   <bool>true</bool>
  </edit>
 </match>
 <!-- Replace Verdana with Tahoma -->
 <match target="pattern" name="family">
  <test name="family" qual="any">
   <string>Verdana</string>
  </test>
  <edit mode="assign" name="family">
   <string>Tahoma</string>
  </edit>
 </match>
 <dir>~/.fonts</dir>
</fontconfig>

Laptop : Clevo 970PU 64-bit - LM 19.1 - Cinnamon
Processeur : 4 x Intel - CPU N4200 @ 1.10 GHz Max
Mémoire : 3,7 Gio de mémoire vive
Navigateur : Opera 60, Chromium & Firefox Quantum 64

Hors ligne

#4 Le 30/11/2011, à 20:14

BlackSlapPower

Re : Polices de caractères dans firefox 8 et thunderbird 7.0.1

CathPazou a écrit :

Toujours dans la config du système, j'ai tout mis en "déjà vu", mais rien n'a changé dans ces applications

J'ai l'impression que la politique de gestion des polices pour ces programmes se fait indépendamment de celle du reste du système. Plus simple, à mon sens: passer directement par l'interface graphique de Firefox

Firefox/Préférence/Contenu/Police et couleur.....


Asus M4A89GTD Pro/ USB/ AMD Phenom II 555/ 8Go RAM  HD6870/ OpenSUSE 12.2 64bits
EeePc 1000 HE/ Kubuntu 12.04 32bits

Hors ligne