Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
2k views

Problem compiling freetype2 with MinGW/MSYS

There seems to be a problem compiling freetype2 with MinGW and MSYS My attempts on a clean copy of the freetype source, and an unadulterated MinGW and MSYS give: Andrew@MCARDLE-PC ~/documents/code $ ...
2
votes
2answers
518 views

Hardware accelerated Unicode text rendering

I want to write a hardware accelerated text renderer using Free Type 2 to load the fonts, find the correct glyphs and their sizes etc. My plan to do this is to have a large texture containing glyphs ...
1
vote
1answer
157 views

How to install PIL with Freetype?

I wanted to put django-simple-captcha in my project but it cannot create images for the CaptchaField. It says "No module named _imagingft" I am using Ubuntu 11.04 I installed libfreetype6 and ...
1
vote
0answers
208 views

Freetype2 failing under WoW64

I built a tff to D3D texture function using freetype2(2.3.9) to generate grayscale maps from the fonts. it works great under native win32, however, on WoW64 it just explodes (well, FT_Done and ...
1
vote
2answers
2k views

unsigned char* buffer (FreeType2 Bitmap) to System::Drawing::Bitmap

I'm trying to convert a FreeType2 bitmap to a System::Drawing::Bitmap in C++/CLI. FT_Bitmap has a unsigned char* buffer that contains the data to write. I believe that the size of byte[] is ...
1
vote
2answers
754 views

Location of the fonts on the iPhone?

I'm using the FreeType2 library in an iPhone project, and I'm trying to simply load a TTF file from the system, if possible. FT_Library library; FT_Face face; int error; error = FT_Init_FreeType( ...
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
0answers
98 views

How can I determine all the codepoints that do not have glyphs in a font using FreeType?

This question is closely related to http://stackoverflow.com/questions/103725/is-there-a-way-to-programatically-determine-if-a-font-file-has-a-specific-unicode However, I am looking for a solution ...
0
votes
1answer
24 views

Using FreeType2 with OpenGL on Xcode 4

I am currently using Xcode 4.2.1 on OSX Lion 10.7.2 and I am trying to use my own font (MankSans.ttf) to display a string on the screen with OpenGL. I tried following the tutorial on this site: ...
0
votes
1answer
78 views

Memory leak when using freetype library

In the following code snippet, I am leaking 52 bytes of memory for every iteration of the for loop, but after several hours I am unable to determine why =/ Any help will be appreciated. ...
0
votes
1answer
186 views

compiling freetype2 for an ipad application in xcode 4?

1) Can any one tell me how to compile freetype2 for xcode4.I went through almost all blogs but none of them are clearer. Actually, I want to use PoDoFo library for modifying pdf metadata, PoDoFo ...
0
votes
1answer
461 views

Displaying unicode string using opengl, qt and freetype

I want to display text in OGL using FTGL(wrapper for FreeType2) in Qt. I have problem with unicode->FTGL must have charcode of actually rendering char, to get glyph from truetype font, which is ...
0
votes
1answer
489 views

Unable to link FreeType 2 library using MinGW; ld.exe: cannot find -lfreetype

I am compiling with MinGW in Windows 7, using Code::Blocks as the IDE. Everything should be up to date. I noticed there are a number of similar questions, but those seemed to be about linking a ...
0
votes
1answer
391 views

Freetype Opengl Glyph is not rendering

I am trying to render a single char as a demo in opengl by utilizing the bitmap buffer offered by freetype glyphs. I know my triangle fan is correct because right now i see a black textured ...
0
votes
1answer
203 views

FreeType2: Get global font bounding box in pixels?

I'm using FreeType2 for font rendering, and I need to get a global bounding box for all fonts, so I can align them in a nice grid. I call FT_Set_Char_Size followed by extracting the global bounds ...
0
votes
1answer
146 views

FreeType 2 - Unicode Character Codes?

The documentation for FreeType2 says that the default character map used is the Unicode map... However, when I attempt to retrieve character code for Unicode 'T', it gives me Unicode 'Z' using: ...
0
votes
1answer
171 views

Retrieving a specified glyph from freetype (SHIFT JIS encoded)?

Until now I used a texture (bitmapfont) for font rendering, but I'm trying to get freetype2 working. All my strings are SHIFT_JIS encoded and my only Problem is now to get from freetype the right ...
0
votes
3answers
384 views

Can I use Win32 FreeType without the .dll file?

I'm teaching myself OpenGL and I'm implementing ttf text rendering using FreeType 2. I downloaded the library from http://gnuwin32.sourceforge.net/packages/freetype.htm and after a couple of minor ...
0
votes
1answer
379 views

How to use Freetype in win32 apps

Does any one know samples/tutorials of how to use Freetype in win32 apps
0
votes
2answers
1k views

Errors compiling PHP with GD2 and Freetype on Mac Leopard 10.5.6

I'm compiling PHP5.2.9 on Mac OS X 10.5.6. Need some help to figure this out. I have PHP compiling and working with a basic config, and now I'm trying to compile with GD2. The problem I'm running ...