This is a sample library which allows you to use TrueType fonts in your SDL applications. It comes with an example program "showfont" which displays an example string for a given TrueType font file.
1
vote
2answers
29 views
Make_Pair identifier not found in one function but found in another
I’m trying to make a dictionary of fonts with SDL_ttf, just like I made a dictionary with SDL_image. Since fonts are stored with a pnt_size I made a struct containing this info:
struct fontinfo
...
0
votes
1answer
42 views
Drawing text with SDL_ttf while using other graphics
I am making this game using SDL and I need to be able to text displayed for variables and information etc. The problem is I can't render any text while SDL_OPENGL is a parameter in
SDL_SetVideoMode().
...
0
votes
0answers
227 views
Issues with undefined reference NDK
Ok I know that this has been brought up. Yet mine does not seem to be addressed.
Before we start let it be known the following:
OS: Win7 (x86)
IDE: Eclipse Juno (4.2)
NDK: r8e
Android API: 17 ...
0
votes
1answer
69 views
SDL2 & SDL_ttf - Best Practice
I have some basics set up in my game but I came to a point where I want to include font rendering (initially for debug output to the screen).
Looking at various tutorials and the SDL_ttf library I ...
0
votes
1answer
90 views
SDL_ttf - Font directory/Where do fonts go?
I've been noodling around with SDL and OpenGL (in C++), and decided to get some text into my game.
I've followed a few tutorials, but I always get the same error: "Couldn't find .ttf" I'm sure it's ...
0
votes
0answers
57 views
Porting application / Codeblocks linker
I'm porting an applications I did in Linux some time ago to Windows. I use SDL and SDL_ttf and I am having problems with the latter. When compiling I get undefined references to all functions of ...
0
votes
1answer
78 views
SDL_Surface Transparency Issues
I have been working with sdl ttf, Now, I'm creating a text renderer function for multiline text rendering.
I am creating a surface for each line, blitting in in a "global" surface, and then ...
0
votes
1answer
127 views
SDL ttf with opengl, font size issues
I am working with sdl ttf for rendering text to opengl, actually everything it's fine, but like you know, when you open a ttf sdl file you specify it on pixels, and you can't change the font size. ...
0
votes
0answers
136 views
SDL ttf change font size without opening a new font
For the text drawing i'm using SDL ttf, well, I have this function that draws the text:
inline void GameInstance::draw_text(float x,float y,const char* text,TTF_Font *font,SDL_Color color,TextAlign ...
0
votes
1answer
174 views
Transparent SDL_Surface without background
I'm working with SDL and OpenGL.
I'm using SDL ttf for create a surface with the text, then create a texture with that surface.
I'm trying to apply an alpha channel (opacity) to the text, I'm using ...
0
votes
1answer
64 views
Trouble having SDL_TTF and OPENGL work together
For a game I'm working on, I'm hoping to use OpenGL for a lot of the graphics and SDL_TTF for the text. I can get both to work but not at the same time. Here's my code (based off Lazy Foo):
#include ...
1
vote
1answer
95 views
SDL_ttf linking errors Code::Blocks(Windows)
I've followed tutorial from lazyfoo.net how to link SDL_ttf with Code::Blocks(windows), but something is wrong. I get these errors:
C:\SDL_ttf-2.0.11\include\SDL_ttf.h|30|error: SDL.h: No such file ...
0
votes
1answer
115 views
Converting Int to char * and displaying on screen [closed]
When I draw on the screen I want to show a dynamic text area for the game score. The only problem is that when I redraw the screen, it is not updated with the new score value and also there is garbled ...
2
votes
3answers
194 views
TTF_OpenFont() returns NULL
Here are the facts: I am using codeblocks on Ubuntu. I have installed SDL and SDL_ttf and have included and linked them successfully. I want to render text to the screen of the font, FreeSerif.
Here ...
0
votes
2answers
253 views
can not import pygame.font
My OS is OSX 10.8(mountain lion), and I am using python 2.7.3. I thought I had installed pygame successfully. Unfortunately, I was wrong. I am able to import pygame, but there is something wrong when ...
3
votes
1answer
1k views
Trying to install SDL_ttf in Visual Studio Express 2012 for Windows Desktop
I am trying to install SDL_ttf in Visual Studio Express 2012 for Windows Desktop and I have a small sample program that compiles fine, but when I run it, I get an error popup that says "The ...
2
votes
1answer
68 views
SDL TTF not showing ellipsis on some fonts
On some fonts, I can't get SDL_TTF to render some glyphs (such as …), even when I know they are present (if I use the same font in, say, gedit, it works fine).
Makefile:
test: test.c
gcc -o ...
3
votes
1answer
407 views
Using SDL_ttf and OpenGL, TTF_RenderUTF8_Blended print Red rectangle
When I render my text using TTF_RenderUTF8_Blended I obtain a solid rectangle on the screen. The color depends on the one I choose, in my case the rectangle is red.
My question
What am I missing? ...
1
vote
2answers
111 views
unable to chain up to base constructor requiring arguments
public class Font : SDLTTF.Font {
public Font (string _filename, int _size) {
}
public void draw () {
}
}
That's my code. When I try to build it, I get:
Font.vala:4.5-4.15: ...
0
votes
2answers
223 views
Rendering text with a single font texture (SDL + OpenGL)
I've been searching and testing around with new ways to render text with OpenGL, loading the its textures with SDL, but every technic I test it seems to be expensive and slow.
Thinking about it I ...
0
votes
1answer
197 views
SDL TTF Library Memory Leaks (Creating and Freeing Surfaces Every Frame)
I am creating a basic SDL+OpenGL level editor for a game I'm making, and I'm encountering some pretty severe memory leaks when creating dynamic TTF surfaces, then converting them to OpenGL textures.
...
0
votes
1answer
123 views
SDL_ttf wierd crashing issue SDL_OpenGL
In my game, when the "time" is active, it would always crash after 5 "hours". When it's running, it's working fine until it starts displaying an incorrect time(for reasons unknown) and it would crash ...
0
votes
1answer
171 views
How to draw solid text using sdl_ttf?
Here's an example:
SDL_Color textcol = {255, 255, 255};
SDL_Color backtextcol = {0, 0, 0};
SDL_Surface *mes = TTF_RenderText_Shaded(font, "The game has begun", textcol, backtextcol);
...
0
votes
1answer
509 views
c++ SDL draw text and figures together
I am doing a big project and I want to show user the information which looks nice.
All that I need it's to be able to draw square and text inside.
I drew text and squares, but I cannot put them ...
1
vote
1answer
144 views
Rubygame::TTF - The difference between a string's width and the width of all it's characters
I'm trying to use Rubygame to determine each of a string's character widths as a percentage of the string's total width...
require "rubygems"
require "rubygame"
include Rubygame
TTF.setup
$font = ...
0
votes
1answer
339 views
SDL C++ ttf linker errors
I'm using CodeBlocks and trying to link SDL_ttf when compiling my program. I have followed thus instructions:
Add "-lSDL_ttf" in the linker command line
Put SDL_ttf.dll in library directory
Put ...
0
votes
1answer
226 views
SDL C++ Linker Error
I'm trying to get the ttf SDL fonts up and running on my machine.
I'm using CodeBlocks and have the appropriate linking already to build a standard SDL window:
-lSDL -lSDL_main without any ...
0
votes
3answers
395 views
Utf8 Linux filenames and C
I am working at a OS independent file manager, using SDL_ttf to draw my text.
On Windows, everything works well, but on Linux I have to use the UTF8 functions of SDL_ttf, because the filenames can be ...
4
votes
2answers
383 views
Status of NPOT textures in OpenGL today
I'm currently writing a game that uses 2D OpenGL output under sdl, and I'm trying to load text using SDL_ttf. However I have to pad the text with blank pixels as it appears that plain OpenGL doesn't ...
1
vote
1answer
282 views
SDL_TTF system font
Is there any way to use the default system font with SDL_TFF, without writing platform-specific code? Currently I just use one of the GNU FreeFont's, but I would like to be able to use the default ...
