Attivare la levigatura dei font LCD ( rendering subpixel ) dovrebbe avere un effetto immediato sulla finestra delle Preferenze di Sistema con la maggior parte dei display.
La levigatura dei font LCD non è abilitata automaticamente su alcuni display LCD sebbene . Potresti essere in grado di forzarli a usarlo con defaults write -g AppleFontSmoothing -int 2
, che corrisponde all'impostazione media pre-10.6 o abilitando la levigatura dei font LCD sulla maggior parte dei display.
10.5 usato per consentire la scelta tra due impostazioni aggiuntive per il rendering del testo, chiare e forti. Se il valore predefinito era chiaro prima dell'aggiornamento a 10.8, puoi ripristinarlo con defaults write -g AppleFontSmoothing -int 1
.
Linee guida ad alta risoluzione per OS X: tecniche avanzate di ottimizzazione
In OS X v10.8, the default value of the NSFontDefaultScreenFontSubstitutionEnabled
setting is NO
. This setting determines whether or not text APIs (such as NSLayoutManager
, NSCell
, and the NSStringDrawing
categories on NSString
and NSAttributedString
) substitute screen fonts when calculating layout and display of text.
Although screen font substitution will no longer be the default, using screen font might still be appropriate to support:
- Compatibility with documents created with previous versions of your app. The difference in glyph advancement measurements between integral and floating-point values can cause a change in text layout.
- Fixed-pitch plain text style output—for example, the Plain Text mode in Text Edit.
To keep the OS X v10.7 screen font substitution behavior as the default, set the
NSUserDefaults
key NSFontDefaultScreenFontSubstitutionEnabled
to YES.
To maintain the screen font setting on a per-document basis, specify NSUsesScreenFontsDocumentAttribute
as a document attribute when you initialize an attributed string object.
defaults write -g NSFontDefaultScreenFontSubstitutionEnabled -bool true
non sembra avere (quasi) alcun effetto nella maggior parte delle applicazioni. Ma per qualche ragione disabilita la crenatura nell'Editor di AppleScript.