Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
5
votes
5answers
316 views

SetLineSpacing() does not work in DirectWrite - why?

I'm rendering text in Direct2D/DirectWrite, but calling SetLineSpacing() on either TextFormat or TextLayout seems to have no effect. Does anyone know why?
2
votes
2answers
325 views

Directwrite: Getting a font's height

My objective: I want to get the height of an IDWriteTextFormat's font so I can calculate how many lines of text can fit in an IDWriteTextLayout of a certain height. My problem: Right now I'm ...
2
votes
4answers
2k views

Why don't Direct2D and DirectWrite use traditional COM objects?

I'm toying with a little 2D game engine in C# and decided to use Direct2D and DirectWrite for rendering. I know there's the Windows API Code Pack and SlimDX, but I'd really like to dig in and write an ...
1
vote
1answer
156 views

Shortest path to render from DirectWrite to Direct3D11?

Man so much has changed since I learned DirectX 7. Everywhere I look (except Wikipedia), it says I have to render from DWrite to D2D or GDI before I can do anything. Is that Wikipedia article wrong? ...
1
vote
1answer
519 views

Win32/Direct2D - how to render infinite scrolling listbox

I'm building a Win32 application with C++ which needs to display a list of relatively simple items from Twitter. Each item in the list would include the author and the tweet text along some icons. It ...
1
vote
1answer
201 views

Is there a port of SWT 3.6 to WPF?

recently i've been looking for a version of SWT that uses WPF (or DirectWrite) as its renderer. The last version of SWT ported to WPF that I've found was 3.3. Anyway, is there any port of SWT 3.6 to ...
1
vote
3answers
184 views

Unresolved external symbol

Guys in this Main article there is a header file and a source file. After copying those two files and adding few headers: #include <Windows.h> #include <d2d1.h> #pragma comment(lib, ...
0
votes
0answers
58 views

DirectWrite Text Rendering on Transparent GDI+ DC

I have a significant pre-existing body of GDI+ code, written in native C++, which includes transparent layers upon which text and bitmaps are drawn. The layers (implemented using memory DCs with ...
0
votes
0answers
178 views

IE9 / Firefox 4+ (DirectWrite) line height inconsistency with older GDI browsers

Ok this is a difficult problem to solve: I have a site design which is badly affected by differing line heights between browsers that use DirectWrite vs GDI to render fonts. This is resulting in ...
0
votes
1answer
124 views

Do Silverlight or WPF applications use Direct2D or DirectWrite to render fonts and UI?

I found a lot of information that IE9 uses DirectWrite and Direct2D instead of GDI for rendering UI. Is the same true for WPF and Silverlight applications?
0
votes
2answers
143 views

Text is different size on different platforms

How do I get precise sizing on different platforms, if each platform renders text at a different size? This issue was exacerbated with the recent release of Firefox 4. This version enables hardware ...
0
votes
2answers
146 views

How can I render mixed-colour text in DirectWrite?

I want to use DirectWrite for mixed-colour text formatting (syntax highlighting, to be precise), but can't seem to find a way to do it, either in the Layout or Typography options. The only option is ...