drawtext.c 14.6 KB
Newer Older
1 2
/*
 * drawtext.c: print text over the screen
3
 ******************************************************************************
4
 * Options:
5 6
 * -f <filename>    font filename (MANDATORY!!!)
 * -s <pixel_size>  font size in pixels [default 16]
7 8
 * -b               print background
 * -o               outline glyphs (use the bg color)
9 10
 * -x <pos>         x position ( >= 0) [default 0]
 * -y <pos>         y position ( >= 0) [default 0]
11
 * -t <text>        text to print (will be passed to strftime())
12 13
 *                  MANDATORY: will be used even when -T is used.
 *                  in this case, -t will be used if some error
14 15 16 17
 *                  occurs
 * -T <filename>    file with the text (re-read every frame)
 * -c <#RRGGBB>     foreground color ('internet' way) [default #ffffff]
 * -C <#RRGGBB>     background color ('internet' way) [default #000000]
18
 *
19 20 21 22 23 24 25 26
 ******************************************************************************
 * Features:
 * - True Type, Type1 and others via FreeType2 library
 * - Font kerning (better output)
 * - Line Wrap (if the text doesn't fit, the next char go to the next line)
 * - Background box
 * - Outline
 ******************************************************************************
27 28
 * Author: Gustavo Sverzut Barbieri <gsbarbieri@yahoo.com.br>
 *
29 30 31
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
32 33
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
34
 * version 2.1 of the License, or (at your option) any later version.
35
 *
36
 * FFmpeg is distributed in the hope that it will be useful,
37 38 39 40 41
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
42
 * License along with FFmpeg; if not, write to the Free Software
43
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
44
 */
45 46 47

#define MAXSIZE_TEXT 1024

48
#include "libavformat/framehook.h"
49

50 51 52 53 54 55
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <stdarg.h>
#include <string.h>
#include <unistd.h>
56
#undef time
57 58 59 60 61
#include <sys/time.h>
#include <time.h>

#include <ft2build.h>
#include FT_FREETYPE_H
62
#include FT_GLYPH_H
63

64 65 66 67 68 69 70 71 72
#define SCALEBITS 10
#define ONE_HALF  (1 << (SCALEBITS - 1))
#define FIX(x)    ((int) ((x) * (1<<SCALEBITS) + 0.5))

#define RGB_TO_YUV(rgb_color, yuv_color) do { \
  yuv_color[0] = (FIX(0.29900)    * rgb_color[0] + FIX(0.58700) * rgb_color[1] + FIX(0.11400) * rgb_color[2] + ONE_HALF) >> SCALEBITS; \
  yuv_color[2] = ((FIX(0.50000)   * rgb_color[0] - FIX(0.41869) * rgb_color[1] - FIX(0.08131) * rgb_color[2] + ONE_HALF - 1) >> SCALEBITS) + 128; \
  yuv_color[1] = ((- FIX(0.16874) * rgb_color[0] - FIX(0.33126) * rgb_color[1] + FIX(0.50000) * rgb_color[2] + ONE_HALF - 1) >> SCALEBITS) + 128; \
} while (0)
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95

#define COPY_3(dst,src) { \
    dst[0]=src[0]; \
    dst[1]=src[1]; \
    dst[2]=src[2]; \
}



#define SET_PIXEL(picture, yuv_color, x, y) { \
    picture->data[0][ (x) + (y)*picture->linesize[0] ] = yuv_color[0]; \
    picture->data[1][ ((x/2) + (y/2)*picture->linesize[1]) ] = yuv_color[1]; \
    picture->data[2][ ((x/2) + (y/2)*picture->linesize[2]) ] = yuv_color[2]; \
}

#define GET_PIXEL(picture, yuv_color, x, y) { \
    yuv_color[0] = picture->data[0][ (x) + (y)*picture->linesize[0] ]; \
    yuv_color[1] = picture->data[1][ (x/2) + (y/2)*picture->linesize[1] ]; \
    yuv_color[2] = picture->data[2][ (x/2) + (y/2)*picture->linesize[2] ]; \
}


typedef struct {
96
  unsigned char *text;
97
  char *file;
98 99 100 101 102 103
  unsigned int x;
  unsigned int y;
  int bg;
  int outline;
  unsigned char bgcolor[3]; /* YUV */
  unsigned char fgcolor[3]; /* YUV */
104 105
  FT_Library library;
  FT_Face    face;
106
  FT_Glyph   glyphs[ 255 ];
107 108 109 110 111 112 113 114
  FT_Bitmap  bitmaps[ 255 ];
  int        advance[ 255 ];
  int        bitmap_left[ 255 ];
  int        bitmap_top[ 255 ];
  unsigned int glyphs_index[ 255 ];
  int        text_height;
  int        baseline;
  int use_kerning;
115 116 117 118 119 120 121 122 123 124
} ContextInfo;


void Release(void *ctx)
{
    if (ctx)
        av_free(ctx);
}


125
static int ParseColor(char *text, unsigned char yuv_color[3])
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
{
  char tmp[3];
  unsigned char rgb_color[3];
  int i;

  tmp[2] = '\0';

  if ((!text) || (strlen(text) != 7) || (text[0] != '#') )
    return -1;

  for (i=0; i < 3; i++)
    {
      tmp[0] = text[i*2+1];
      tmp[1] = text[i*2+2];

      rgb_color[i] = strtol(tmp, NULL, 16);
    }

  RGB_TO_YUV(rgb_color, yuv_color);

  return 0;
}

int Configure(void **ctxp, int argc, char *argv[])
{
    int c;
    int error;
    ContextInfo *ci=NULL;
    char *font=NULL;
    unsigned int size=16;
156 157
    FT_BBox bbox;
    int yMax, yMin;
158 159 160 161 162
    *ctxp = av_mallocz(sizeof(ContextInfo));
    ci = (ContextInfo *) *ctxp;

    /* configure Context Info */
    ci->text = NULL;
163
    ci->file = NULL;
164 165 166 167 168 169 170 171 172
    ci->x = ci->y = 0;
    ci->fgcolor[0]=255;
    ci->fgcolor[1]=128;
    ci->fgcolor[2]=128;
    ci->bgcolor[0]=0;
    ci->fgcolor[1]=128;
    ci->fgcolor[2]=128;
    ci->bg = 0;
    ci->outline = 0;
173
    ci->text_height = 0;
174

175
    optind = 1;
176
    while ((c = getopt(argc, argv, "f:t:T:x:y:s:c:C:bo")) > 0) {
177 178
      switch (c) {
      case 'f':
179 180
        font = optarg;
        break;
181
      case 't':
182 183
        ci->text = av_strdup(optarg);
        break;
184
      case 'T':
185 186
        ci->file = av_strdup(optarg);
        break;
187
      case 'x':
188 189
        ci->x = (unsigned int) atoi(optarg);
        break;
190
      case 'y':
191 192
        ci->y = (unsigned int) atoi(optarg);
        break;
193
      case 's':
194 195
        size = (unsigned int) atoi(optarg);
        break;
196
      case 'c':
197 198
        if (ParseColor(optarg, ci->fgcolor) == -1)
          {
199
            av_log(NULL, AV_LOG_ERROR, "Invalid foreground color: '%s'. You must specify the color in the internet way(packaged hex): #RRGGBB, ie: -c #ffffff (for white foreground)\n", optarg);
200 201 202
            return -1;
          }
        break;
203
      case 'C':
204 205
        if (ParseColor(optarg, ci->bgcolor) == -1)
          {
206
            av_log(NULL, AV_LOG_ERROR, "Invalid background color: '%s'. You must specify the color in the internet way(packaged hex): #RRGGBB, ie: -C #ffffff (for white background)\n", optarg);
207 208 209
            return -1;
          }
        break;
210
      case 'b':
211 212
        ci->bg=1;
        break;
213
      case 'o':
214 215
        ci->outline=1;
        break;
216
      case '?':
217
        av_log(NULL, AV_LOG_ERROR, "Unrecognized argument '%s'\n", argv[optind]);
218
        return -1;
219 220 221
      }
    }

222
    if (!ci->text)
223
      {
224
        av_log(NULL, AV_LOG_ERROR, "No text provided (-t text)\n");
225
        return -1;
226 227
      }

228 229
    if (ci->file)
      {
230 231 232
        FILE *fp;
        if ((fp=fopen(ci->file, "r")) == NULL)
          {
233
            av_log(NULL, AV_LOG_INFO, "WARNING: The file could not be opened. Using text provided with -t switch: %s", strerror(errno));
234 235 236 237 238
          }
        else
          {
            fclose(fp);
          }
239 240
      }

241 242
    if (!font)
      {
243
        av_log(NULL, AV_LOG_ERROR, "No font file provided! (-f filename)\n");
244
        return -1;
245 246
      }

247
    if ((error = FT_Init_FreeType(&(ci->library))) != 0)
248
      {
249
        av_log(NULL, AV_LOG_ERROR, "Could not load FreeType (error# %d).\n", error);
250
        return -1;
251 252
      }

253
    if ((error = FT_New_Face( ci->library, font, 0, &(ci->face) )) != 0)
254
      {
255
        av_log(NULL, AV_LOG_ERROR, "Could not load face: %s  (error# %d).\n", font, error);
256
        return -1;
257
      }
258

259
    if ((error = FT_Set_Pixel_Sizes( ci->face, 0, size)) != 0)
260
      {
261
        av_log(NULL, AV_LOG_ERROR, "Could not set font size to %d pixels (error# %d).\n", size, error);
262
        return -1;
263
      }
264 265 266 267 268 269 270 271

    ci->use_kerning = FT_HAS_KERNING(ci->face);

    /* load and cache glyphs */
    yMax = -32000;
    yMin =  32000;
    for (c=0; c < 256; c++)
      {
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
        /* Load char */
        error = FT_Load_Char( ci->face, (unsigned char) c, FT_LOAD_RENDER | FT_LOAD_MONOCHROME );
        if (error) continue;  /* ignore errors */

        /* Save bitmap */
        ci->bitmaps[c] = ci->face->glyph->bitmap;
        /* Save bitmap left */
        ci->bitmap_left[c] = ci->face->glyph->bitmap_left;
        /* Save bitmap top */
        ci->bitmap_top[c] = ci->face->glyph->bitmap_top;

        /* Save advance */
        ci->advance[c] = ci->face->glyph->advance.x >> 6;

        /* Save glyph */
        error = FT_Get_Glyph( ci->face->glyph, &(ci->glyphs[c]) );
        /* Save glyph index */
        ci->glyphs_index[c] = FT_Get_Char_Index( ci->face, (unsigned char) c );

        /* Measure text height to calculate text_height (or the maximum text height) */
        FT_Glyph_Get_CBox( ci->glyphs[ c ], ft_glyph_bbox_pixels, &bbox );
        if (bbox.yMax > yMax)
          yMax = bbox.yMax;
        if (bbox.yMin < yMin)
          yMin = bbox.yMin;
297

298 299 300 301 302
      }

    ci->text_height = yMax - yMin;
    ci->baseline = yMax;

303 304 305 306
    return 0;
}


307 308


309
static inline void draw_glyph(AVPicture *picture, FT_Bitmap *bitmap, unsigned int x, unsigned int y, unsigned int width, unsigned int height, unsigned char yuv_fgcolor[3], unsigned char yuv_bgcolor[3], int outline)
310 311 312 313 314 315 316 317
{
  int r, c;
  int spixel, dpixel[3], in_glyph=0;

  if (bitmap->pixel_mode == ft_pixel_mode_mono)
    {
      in_glyph = 0;
      for (r=0; (r < bitmap->rows) && (r+y < height); r++)
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
        {
          for (c=0; (c < bitmap->width) && (c+x < width); c++)
            {
              /* pixel in the picture (destination) */
              GET_PIXEL(picture, dpixel, (c+x), (y+r));

              /* pixel in the glyph bitmap (source) */
              spixel = bitmap->buffer[r*bitmap->pitch +c/8] & (0x80>>(c%8));

              if (spixel)
                COPY_3(dpixel, yuv_fgcolor);

              if (outline)
                {
                  /* border detection: */
                  if ( (!in_glyph) && (spixel) )
                    /* left border detected */
                    {
                      in_glyph = 1;
                      /* draw left pixel border */
                      if (c-1 >= 0)
                        SET_PIXEL(picture, yuv_bgcolor, (c+x-1), (y+r));
                    }
                  else if ( (in_glyph) && (!spixel) )
                    /* right border detected */
                    {
                      in_glyph = 0;
                      /* 'draw' right pixel border */
                      COPY_3(dpixel, yuv_bgcolor);
                    }

                  if (in_glyph)
                    /* see if we have a top/bottom border */
                    {
                      /* top */
                      if ( (r-1 >= 0) && (! bitmap->buffer[(r-1)*bitmap->pitch +c/8] & (0x80>>(c%8))) )
                        /* we have a top border */
                        SET_PIXEL(picture, yuv_bgcolor, (c+x), (y+r-1));

                      /* bottom */
                      if ( (r+1 < height) && (! bitmap->buffer[(r+1)*bitmap->pitch +c/8] & (0x80>>(c%8))) )
                        /* we have a bottom border */
                        SET_PIXEL(picture, yuv_bgcolor, (c+x), (y+r+1));

                    }
                }

              SET_PIXEL(picture, dpixel, (c+x), (y+r));
            }
        }
368 369 370 371
    }
}


372
static inline void draw_box(AVPicture *picture, unsigned int x, unsigned int y, unsigned int width, unsigned int height, unsigned char yuv_color[3])
373 374 375 376
{
  int i, j;

  for (j = 0; (j < height); j++)
377 378
    for (i = 0; (i < width); i++)
      {
379
        SET_PIXEL(picture, yuv_color, (i+x), (y+j));
380
      }
381

382 383 384 385 386
}




387
void Process(void *ctx, AVPicture *picture, enum PixelFormat pix_fmt, int width, int height, int64_t pts)
388 389
{
  ContextInfo *ci = (ContextInfo *) ctx;
390
  FT_Face face = ci->face;
391
  FT_GlyphSlot  slot = face->glyph;
392 393 394 395 396
  unsigned char *text = ci->text;
  unsigned char c;
  int x = 0, y = 0, i=0, size=0;
  unsigned char buff[MAXSIZE_TEXT];
  unsigned char tbuff[MAXSIZE_TEXT];
397
  time_t now = time(0);
398
  int str_w, str_w_max;
399
  FT_Vector pos[MAXSIZE_TEXT];
400 401
  FT_Vector delta;

402
  if (ci->file)
403 404
    {
      int fd = open(ci->file, O_RDONLY);
405 406

      if (fd < 0)
407 408
        {
          text = ci->text;
409
          av_log(NULL, AV_LOG_INFO, "WARNING: The file could not be opened. Using text provided with -t switch: %s", strerror(errno));
410
        }
411
      else
412 413 414 415 416 417 418 419 420 421 422
        {
          int l = read(fd, tbuff, sizeof(tbuff) - 1);

          if (l >= 0)
            {
              tbuff[l] = 0;
              text = tbuff;
            }
          else
            {
              text = ci->text;
423
              av_log(NULL, AV_LOG_INFO, "WARNING: The file could not be read. Using text provided with -t switch: %s", strerror(errno));
424 425 426
            }
          close(fd);
        }
427 428 429 430 431
    }
  else
    {
      text = ci->text;
    }
432 433 434 435 436 437

  strftime(buff, sizeof(buff), text, localtime(&now));

  text = buff;

  size = strlen(text);
438

439 440


441 442 443

  /* measure string size and save glyphs position*/
  str_w = str_w_max = 0;
444
  x = ci->x;
445
  y = ci->y;
446 447
  for (i=0; i < size; i++)
    {
448
      c = text[i];
449

450 451
      /* kerning */
      if ( (ci->use_kerning) && (i > 0) && (ci->glyphs_index[c]) )
452 453 454 455 456 457
        {
          FT_Get_Kerning( ci->face,
                          ci->glyphs_index[ text[i-1] ],
                          ci->glyphs_index[c],
                          ft_kerning_default,
                          &delta );
458

459 460
          x += delta.x >> 6;
        }
461

462
      if (( (x + ci->advance[ c ]) >= width ) || ( c == '\n' ))
463 464
        {
          str_w = width - ci->x - 1;
465

466 467 468
          y += ci->text_height;
          x = ci->x;
        }
469 470 471 472 473 474 475 476 477 478 479


      /* save position */
      pos[i].x = x + ci->bitmap_left[c];
      pos[i].y = y - ci->bitmap_top[c] + ci->baseline;


      x += ci->advance[c];


      if (str_w > str_w_max)
480
        str_w_max = str_w;
481 482 483

    }

484

485 486 487 488 489 490


  if (ci->bg)
    {
      /* Check if it doesn't pass the limits */
      if ( str_w_max + ci->x >= width )
491
        str_w_max = width - ci->x - 1;
492
      if ( y >= height )
493
        y = height - 1 - 2*ci->y;
494 495

      /* Draw Background */
496
      draw_box( picture, ci->x, ci->y, str_w_max, y - ci->y, ci->bgcolor );
497 498 499 500 501 502 503
    }



  /* Draw Glyphs */
  for (i=0; i < size; i++)
    {
504 505 506
      c = text[i];

      if (
507 508
          ( (c == '_') && (text == ci->text) ) || /* skip '_' (consider as space)
                                                     IF text was specified in cmd line
Vitor Sessak's avatar
Vitor Sessak committed
509
                                                     (which doesn't like nested quotes)  */
510 511 512 513 514 515 516 517 518 519 520 521 522 523
          ( c == '\n' ) /* Skip new line char, just go to new line */
          )
        continue;

        /* now, draw to our target surface */
        draw_glyph( picture,
                    &(ci->bitmaps[ c ]),
                    pos[i].x,
                    pos[i].y,
                    width,
                    height,
                    ci->fgcolor,
                    ci->bgcolor,
                    ci->outline );
524

525 526 527 528 529 530 531
      /* increment pen position */
      x += slot->advance.x >> 6;
    }


}