Tagged Questions
The cleartype tag has no wiki summary.
16
votes
7answers
11k views
IE8: Disable cleartype?
For IE7, it's possible to add
filter: none;
to the body css to disable cleartype on fonts through CSS. I don't like the fuzzy look it gives, and it isn't really consistent across browsers. IE; ...
13
votes
6answers
3k views
IE 9 does not use sub-pixel antialiasing under certain conditions
[Original title: IE 9 text renders very poorly; is there a workaround?)
IE 9 is rendering the text in my application very poorly. The problem is not in my monitor's Clear Type settings, since IE 9 ...
13
votes
7answers
7k views
IE is losing ClearType
I'm experiencing something really strange!
I have a div that I'm hiding with JS (jQuery).
Like this:
$('#myDiv').hide();
Then when I make a fadeIn like this:
$("#myDiv").fadeIn('slow');
then ...
7
votes
2answers
5k views
Disable Cleartype (text anti-aliasing) in IE9
It's well documented (e.g. here) that IE9 ignores the OS-wide settings for font smoothing (aka anti-aliasing). Even if font-smoothing and ClearType are disabled in Windows, IE still shows ...
6
votes
1answer
660 views
Using Internet Explorer filters and ClearType
I've read at length about issues with IE disabling ClearType when using filters, and I'm hoping that my conclusions are wrong. It seems that it is impossible to turn ClearType back on after applying ...
6
votes
0answers
994 views
Using ClearType in Graphics32 library (Delphi) [closed]
I'm using Graphics32 library in Delphi 2009. Is it possible to render a font using TBitmap32.TextOut method with MS' ClearType technology? I'm aware about GR32's built-in antialiasing ...
5
votes
4answers
2k views
Disable antialiasing for a specific GDI device context
I'm using a third party library to render an image to a GDI DC and I need to ensure that any text is rendered without any smoothing/antialiasing so that I can convert the image to a predefined palette ...
4
votes
7answers
3k views
Problem with jQuery's fade in/out in Firefox
I already asked here with no luck, but feel free to read it:
http://groups.google.com/group/jquery-en/browse%5Fthread/thread/fdf7a584b30d4bb9
Hmm check out my site:
http://www.crtaci.info/
on ...
3
votes
0answers
219 views
WinRT and software ClearType font rendering
Does WinRT provides an option to fall back to software ClearType font rendering (as Direct2D do via "Direct2D and GDI Interoperability") or we will be stuck with somewhat blurry hardware font ...
3
votes
1answer
613 views
Sub-pixel rendering of fonts on the iPad
Sub-pixel font rendering like ClearType dramatically improves font display resolution and improves screen readability. How would I program sub-pixel rendering of a font (in general), and how can this ...
3
votes
1answer
2k views
Making CSS3 @font-face font rendering play nice with ClearType on Windows
First some background information. Apologies for the "hxxp" links listed below, SO will only let me use two links.
It seems that using the CSS3 @font-face rule can interact in unexpected and ...
3
votes
1answer
502 views
Aero: How to draw ClearType text on glass?
Using GDI+ to draw text on glass:
graphics.DrawString(s, Length(s), font, MakePointF(x, y), brush);
You'll notice that the ClearType enabled text draws very poorly on glass:
But with glass ...
3
votes
4answers
862 views
How to disable ClearType in Visual Studio 2010?
How to do that? I can't find solution.
VS 2010 version: 10.0.30319.1
3
votes
2answers
264 views
How to get real text dimensions when ClearType is on?
I have a Win32 GUI application that uses GDI havily. It needs to draw text over a bitmap at specified coordinates and later erase it and substitute with the original bitmap.
I proceed as follows:
...
3
votes
2answers
902 views
Is it possible to enable ClearType on Visual Studio only?
I really like how Consolas looks with ClearType enabled but unfortunately it makes everything else look terrible. Is there any way to enable this on a per app basis? I noticed that putty (the terminal ...
2
votes
2answers
339 views
Google web fonts looks ok on Ubuntu 10, weird on Windows XP
I'm having a weird problem with fonts on my website : I'm using Google's Web Font API, and it looks fine in every browser on Ubuntu, but looks weird in every browser on Windows XP, except IE8. I ...
2
votes
2answers
113 views
FlowDocument loses ClearType in child elements when placed in window with custom glass
So the new WPF 4 text rendering looks great, but enabling the aero glass effect on a window requires that you change the background to transparent, which of course disables ClearType rendering.
Using ...
2
votes
2answers
295 views
What is a good programming font that looks good through Remote Desktop?
I guess I've just gotten spoiled with Consolas working on my local development machine. But at work we do a lot of development remotely via Remote Desktop, where any fonts requiring ClearType look ...
2
votes
3answers
604 views
jQuery fadeIn/fadeOut IE cleartype glitch how to fix transition
Well, this is a well known bug with IE and jQuery:
IE is losing ClearType
What I am asking: is it possible to somehow remove that ugly transition effect, before the "fix" is applied. Test this in ...
2
votes
1answer
182 views
ComboBox with Segoe UI and Japanese text
I’m currently trying to make my C# application look better when run within Windows Vista or Windows 7. By default, Windows Forms applications use the Microsoft Sans Serif font, which does not link ...
2
votes
1answer
111 views
a WinForm application which is not influenced by ClearType global settings
I have a main Form (WinForm) which should render its content without ClearType. More precisely, a RichTextBox within that form should render its text without ClearType. When ClearType is turned on at ...
2
votes
1answer
428 views
Enable Windows Cleartype for MFC text controls created at runtime
I have a MFC dialog program in which I create a few CStatic and CEdit controls at runtime. Somehow the text in these controls aren't Cleartype enabled (Cleartype in Windows smoothes texts by sub-pixel ...
2
votes
3answers
662 views
How to use ClearType with double buffering on Compact Framework?
When I draw a string into a buffer, the resulting output is not anti-aliased the way I'd expect. This code illustrates the problem... just put this in a standard smart device project's Form1.cs:
...
2
votes
2answers
7k views
JQuery toggle function rendering weird text in IE (losing ClearType?)
I have this little script to toggle a contact form when a button is clicked :
$(document).ready(function(){
$("#button").click(function () {
$("#form").toggle("slow");
});
});
All ...
2
votes
2answers
573 views
Internet Explorer control uses IE7's own settings for ClearType and font size, can I override them?
I'm embedding an IE control into my C++ application. The problem is that although system-wide, ClearType is disabled, IE7 has its own separate setting, and unless I specifically disable that too, text ...
1
vote
1answer
131 views
Why System.Drawing + ClearType font have ugly black fragments?
I'm using following C# code to make a picture with a text in it
// Create font. Parameter is a global variable
Font objFont = new Font(fontname, fontsize, fontstyle, ...
1
vote
0answers
175 views
Why different font rendering with graphics.drawString() and a default JLabel with ClearType?
Why has the displayed GUI different font style/rendering with graphics.drawString() and a default JLabel with activated cleartype? And how can i fix it?
1
vote
1answer
102 views
Disable cleartype
I have code that takes a screenshot and applies very basic OCR (pixel matches characters). Been testing on virtualbox machine and it was working fine. And when I ran it on Windows 7 the code no longer ...
1
vote
1answer
307 views
show an element if text input is not empty using jQuery
Ok, so I got the element coded and such. It just bit odd, since if the form is empty a clear button is showing in a form of an image ex: (x)
Here is the script, upon page load jQuery focuses on the ...
1
vote
0answers
69 views
javascript distorts font
I've noticed the font is not displayed clear on my website.
It is due to the javascript but I can not find the problem. Does anyone
know what is wrong?
The border of the font is not straight. Looks ...
1
vote
2answers
450 views
C#: Create a font from a logical font (LOGFONT) - quality setting is ignored
I'm trying to create a System.Drawing.Font from a LOGFONT using P/Invoke and Font.FromLogFont.
The requested font have been created, however it always have the same rendering quality - no matter which ...
1
vote
2answers
1k views
ClearType breaks with CSS filter - How to remove attribute with Javascipt?
I'm trying to use JavaScript to remove the CSS attribute "filter" from a block of text on a page.
The reason is that using filter disables ClearType in IE8.
I've tried using ...
1
vote
2answers
851 views
jQuery cycle: fading white text becomes “green” in Windows/Firefox/Cleartype Enabled
On Windows it seems that when there's white text on any background and it does transitions, the text naturally turns to some shade of green during its opacity value being toggled back to 1.
This ...
1
vote
2answers
271 views
Why are not all texts of my MFC applicatiopn displayed using ClearType?
I've got an MFC application that is built with VC6. When ClearType is enabled (Windows XP) some texts are rendered smoothly, i.e. with ClearType, and others are not.
Dialog texts don't seem to ever ...
1
vote
2answers
128 views
Compact Framework and ClearType text
Is there a way to use ClearType text in an application using the .NET Compact Framework?
1
vote
2answers
697 views
Programmatically enable ClearType in Windows Mobile
For our Windows Mobile application I want to enable the ClearType option on the device. According to this article on MSDN it should be done be setting the following registry key:
...
1
vote
3answers
1k views
How to have subpixel rendering of font for LCD (cleartype on windows) on linux?
I am working on embedded system, with own windowing system and rendering library. Before someday when I installed Ubuntu, to my surprise it has LCD subpixel rendering. It really looks cool to have it ...
1
vote
3answers
724 views
How to Enable ClearType in My Site for FireFox?
In Windows XP and Vista it is possible to enable system wide ClearType font rendering.
My question is:
Is it possible to force ClearType rendering for my site in FireFox (maybe some META-TAG thing) ...
1
vote
2answers
952 views
Possible to adjust ClearType on Visual Studio 2010?
I just got VS 2010 beta 1, but the text in the text editor is thin, ie not anti aliased, smoothed or cleartyped. It's hard to read. Is there a setting to adjust it, similar to the one in the OS.
0
votes
0answers
29 views
jquery .hide().fadeIn() ie cleartype glitch
I have added this in my js:
function customFades() {
(function($) {
$.fn.fadeIn = function(speed, callback) {
return this.animate({opacity: 'show'}, speed, function() {
...
0
votes
0answers
22 views
Silverlight and ClearType: just won't do
I am desperately trying to improve the visuals of my Silverlight application, but it won't work.
No matter what I do, I always get grayscale antialiasing, while I would like to get the standard ...
0
votes
3answers
45 views
jquery fadeIn/fadeOut ie cleartype glitch
I´m currently trying to add the feature that is discussed here: http://blog.bmn.name/2008/03/jquery-fadeinfadeout-ie-cleartype-glitch/
Am I understanding it correctly if I say that I could replace:
...
0
votes
0answers
22 views
How can I force an app to use ClearType even if the user turns of ClearType in the system
Recently I found that even if I turn off ClearType in Win7, Visual Studio would still use ClearType.
This is confirmed in this blog.
So I want to know if ClearType can be specially set for one ...
0
votes
3answers
956 views
Enable/disable ClearType in Windows7
Hi
I need to enable/disable Cleartype (or "Adjust the appearance and performance of Windows > Smooth edges of screen fonts") via cmd (or any script like VBS/JS) or from registry without log off or ...
0
votes
0answers
483 views
Firefox 4 awful ClearType text rendering [closed]
I don't know what to think, I've recently installed the latest FF, and it renders websites like everything is between B/STRONG tags.
Example, well known JSFiddle's menu. Above top - Opera (looks ...
0
votes
1answer
194 views
Rendering system controls fonts outside the class
for quite some time now I'm trying to find a solution to the "per-apllication cleartype fonts" problem.
I want to implement cleartype fonts for a TextBox or a Button or a ComboBox or any other ...
0
votes
2answers
288 views
Link Text wrong color(s) in Firefox
Ok, weirdest thing....
Working at home and opened html document in Firefox 3.6 and my link text is wrong colors and looks multi-colored.
Any ideas?
Looks fine in IE, Chrome, Opera and Firefox 3.6 ...
0
votes
1answer
1k views
IE 8/9 ClearType problem
I installed IE9, but it is impossible to turn off ClearType. So I removed IE9, and now in my IE8 I can't turn off ClearType, because checkbox is always disable:
Please help, what can I do?
0
votes
1answer
115 views
Detecting the change of the font smoothing setting in Javascript
I have a page that uses @font-face and I am playing with the JavaScript code that conditionally sets the text in this typeface depending on whether the font smoothing is enabled. Detection is done ...
0
votes
2answers
322 views
Does Qt use ClearType for rendering text in Windows?
Does Qt use ClearType for rendering text (on Windows), and if so, what do I need to set to enable ClearType support?