Page 1 of 2 12 LastLast
Results 1 to 10 of 14

Thread: Turning off antialiasing in Firefox

  1. #1
    Join Date
    May 2005
    Beans
    153

    [solved] Turning off antialiasing in Firefox

    ubuntu 9.10, 32bit, firefox 3.5.3.

    i would like to know how to turn off the antialiasing in firefox. since the options in gnome have no effect in firefox.

    thx!
    Last edited by monkman; October 23rd, 2009 at 03:03 PM.

  2. #2
    Join Date
    May 2005
    Beans
    153

    Re: Turning off antialiasing in Firefox

    for me it works with this:

    create ~.fonts.conf

    Code:
    <?xml version="1.0"?>
    <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
    <!-- /etc/fonts.conf file to configure system font access -->
    <fontconfig>
    
    <!-- Antialias -->
    
    <match target="font"><edit mode="assign" name="antialias">
    <bool>false</bool>
    </edit>
    </match>

  3. #3
    Join Date
    Oct 2006
    Location
    Slovakia
    Beans
    590
    Distro
    Xubuntu 11.10 Oneiric Ocelot

    Re: Turning off antialiasing in Firefox

    Well, that solution is nice, it definitely turns the antialiasing in Firefox completely off, but that's not what I wanted. I just want to lower down the antialiasing to the level I use everywhere else in Gnome (optimized for LCD with full hinting).
    Last edited by mahy; November 1st, 2009 at 11:55 PM.
    בראשית ברא אלהים את השמים ואת הארץ׃

  4. #4
    Join Date
    May 2005
    Beans
    153

    Re: Turning off antialiasing in Firefox

    you can change the settings in the "details" of your fonts...


    http://yfrog.com/efantialiasingp

  5. #5
    Join Date
    Sep 2009
    Location
    Finland
    Beans
    12
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: Turning off antialiasing in Firefox

    Quote Originally Posted by mahy View Post
    Well, that solution is nice, it definitely turns the fonts in Firefox completely off, but that's not what I wanted. I just want to lower down the antialiasing to the level I use everywhere else in Gnome (optimized for LCD with full hinting).
    I found a guide (http://www.webupd8.org/2009/07/fix-f...nd-ubuntu.html) on the internet that worked for me.
    Make a .fonts.conf file in your home directory, and add these lines in it:
    Code:
    <?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>hintfull</const>
    </edit>
    </match>
    <match target="font" >
    <edit mode="assign" name="antialias" >
    <bool>true</bool>
    </edit>
    </match>
    </fontconfig>
    That makes Firefox use full hinting, and it seems to be optimized for LCD.
    I haven't tried the terminal part of the guide because I don't know if it's safe, someone please check it.
    Last edited by ~unknown; October 31st, 2009 at 04:44 PM. Reason: typo

  6. #6
    Join Date
    Apr 2006
    Beans
    259

    Re: Turning off antialiasing in Firefox

    Yes this is very annoying, however pasting this into terminal will fix it and you don't need to create some custom configuration file

    sudo rm /etc/fonts/conf.d/10*
    sudo dpkg-reconfigure fontconfig

  7. #7
    Join Date
    Sep 2009
    Location
    Finland
    Beans
    12
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: Turning off antialiasing in Firefox

    Okay, I didn't read the guide properly, they were 2 different fixes to the problem. They both work.
    Last edited by ~unknown; October 31st, 2009 at 05:20 PM.

  8. #8
    Join Date
    Oct 2006
    Location
    Slovakia
    Beans
    590
    Distro
    Xubuntu 11.10 Oneiric Ocelot

    Re: Turning off antialiasing in Firefox

    Quote Originally Posted by monkman View Post
    you can change the settings in the "details" of your fonts...


    http://yfrog.com/efantialiasingp
    Sorry, I don't know whom you were referring to, but in case it was me, then you quite missed the point. My settings in Gnome are just fine, no need to adjust, but they don't apply to Firefox. I must try some ways other people posted, and keep asking if it doesn't work...
    בראשית ברא אלהים את השמים ואת הארץ׃

  9. #9
    Join Date
    Oct 2006
    Location
    Slovakia
    Beans
    590
    Distro
    Xubuntu 11.10 Oneiric Ocelot

    Re: Turning off antialiasing in Firefox

    Quote Originally Posted by 6205 View Post
    Yes this is very annoying, however pasting this into terminal will fix it and you don't need to create some custom configuration file

    sudo rm /etc/fonts/conf.d/10*
    sudo dpkg-reconfigure fontconfig
    Great suggestion! I don't know how you came up with it, but it works! I should be writing those things down, unfortunately it's not the first such tweak I had to do in Karmic to make it more suitable.

    Vidno, že Slováci sa vyznajú, hehe
    בראשית ברא אלהים את השמים ואת הארץ׃

  10. #10
    Join Date
    Sep 2007
    Beans
    47

    Re: Turning off antialiasing in Firefox

    sudo rm /etc/fonts/conf.d/10*
    sudo dpkg-reconfigure fontconfig

    worked for me too. thank you!

    this bug 67226:
    https://bugs.launchpad.net/ubuntu/+s...3.5/+bug/67226

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •