| Total Variation Inpainting using Split Bregman
    | 
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... | |
Draw text on an image.
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.
| void DrawText | ( | unsigned char * | Image, | 
| int | Width, | ||
| int | Height, | ||
| int | x0, | ||
| int | y0, | ||
| unsigned char | Value, | ||
| const char * | Text | ||
| ) | 
Draw text on an image.
| Image | the destination image | 
| Width,Height | the image dimensions | 
| x0,y0 | the upper-left corner of the text | 
| Value | the grayscale value of the drawn text | 
| Text | the text to be drawn | 
Definition at line 291 of file drawtext.c.
 1.8.3.1
 1.8.3.1