garbage collecting again
This commit is contained in:
14
Tests/Makefile
Normal file
14
Tests/Makefile
Normal file
@@ -0,0 +1,14 @@
|
||||
#-----------------------------------------------------------------
|
||||
|
||||
include ../Paramakes.mk
|
||||
|
||||
DEPS = ../tthimage.h ../Paramakes.mk Makefile
|
||||
|
||||
all: t_t16x24
|
||||
|
||||
#-----------------------------------------------------------------
|
||||
|
||||
t_t16x24: t_t16x24.c $(DEPS) ../libtthimage.a
|
||||
gcc $(CFLAGS) $< ../libtthimage.a -o $@
|
||||
|
||||
#-----------------------------------------------------------------
|
||||
52
Tests/t_t16x24.c
Normal file
52
Tests/t_t16x24.c
Normal file
@@ -0,0 +1,52 @@
|
||||
/*
|
||||
Proggy de test pour les fontes 16x24 - new 4 mai 2007, a StEx.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "../tthimage.h"
|
||||
|
||||
/*::------------------------------------------------------------------::*/
|
||||
int essai_f1(char *tgasrc, char *tgadst, char *texte)
|
||||
{
|
||||
Image_Desc *img;
|
||||
int foo;
|
||||
RGBA encre, papier;
|
||||
|
||||
img = Image_TGA_alloc_load(tgasrc);
|
||||
|
||||
foo = Image_t16x24_txtload("16x24thin", NULL, 0);
|
||||
if (foo) {
|
||||
fprintf(stderr, "%s err %d loading font '16x24thin'\n", __func__, foo);
|
||||
return foo;
|
||||
}
|
||||
|
||||
encre.r = 0; encre.g = 255; encre.b = 100; encre.a = 255;
|
||||
papier.r = 255; papier.b = 0; papier.g = 0; papier.a = 200;
|
||||
|
||||
foo = Image_t16x24_pltstr_1(img, texte, 2, 42, &papier, &encre, 0);
|
||||
|
||||
foo = Image_TGA_save(tgadst, img, 0);
|
||||
|
||||
return -1;
|
||||
}
|
||||
/*::------------------------------------------------------------------::*/
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
int foo;
|
||||
|
||||
fprintf(stderr, "-------------- %s ------------\n", argv[0]);
|
||||
foo = Image_t16x24_chars_map("16x24thin", "all16x24chars.tga", 0);
|
||||
foo = Image_t16x24_chars_map("bigfont.txt", "all16X24chars.tga", 0);
|
||||
fprintf(stderr, "--------------------------\n");
|
||||
Image_print_error("Essai fonte 16x24", foo);
|
||||
|
||||
foo = essai_f1("pov.tga", "/tmp/aaaa_plop.tga", "0123456789");
|
||||
if (foo) {
|
||||
fprintf(stderr, " ---> %d\n", foo);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
/*::------------------------------------------------------------------::*/
|
||||
Reference in New Issue
Block a user