Total Variation Inpainting using Split Bregman
Functions
drawtext.h File Reference

Draw text on an image. More...

Go to the source code of this file.

Functions

int TextWidth (const char *Text)
 Compute the width of text in pixels.
 
void DrawText (unsigned char *Image, int Width, int Height, int x0, int y0, unsigned char Value, const char *Text)
 Draw text on an image. More...
 

Detailed Description

Draw text on an image.

Author
Pascal Getreuer getre.nosp@m.uer@.nosp@m.gmail.nosp@m..com

This file contains a simple implementation for drawing text onto an image. Data for one 18-point sans serif font is included.

Copyright (c) 2012, Pascal Getreuer All rights reserved.

This program is free software: you can redistribute it and/or modify it under, at your option, the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version, or the terms of the simplified BSD license.

You should have received a copy of these licenses along with this program. If not, see http://www.gnu.org/licenses/ and http://www.opensource.org/licenses/bsd-license.html.

Definition in file drawtext.h.

Function Documentation

void DrawText ( unsigned char *  Image,
int  Width,
int  Height,
int  x0,
int  y0,
unsigned char  Value,
const char *  Text 
)

Draw text on an image.

Parameters
Imagethe destination image
Width,Heightthe image dimensions
x0,y0the upper-left corner of the text
Valuethe grayscale value of the drawn text
Textthe text to be drawn

Definition at line 291 of file drawtext.c.