]> git.sesse.net Git - mlt/blob - src/modules/gtk2/producer_pango.c
Add support for HTML style color parameter to producer_pango.
[mlt] / src / modules / gtk2 / producer_pango.c
1 /*
2  * producer_pango.c -- a pango-based titler
3  * Copyright (C) 2003-2004 Ushodaya Enterprises Limited
4  * Author: Dan Dennedy <dan@dennedy.org>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include <framework/mlt_producer.h>
22 #include <framework/mlt_frame.h>
23 #include <framework/mlt_geometry.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <gdk-pixbuf/gdk-pixbuf.h>
27 #include <pango/pangoft2.h>
28 #include <freetype/freetype.h>
29 #include <iconv.h>
30 #include <pthread.h>
31 #include <ctype.h>
32
33 typedef struct producer_pango_s *producer_pango;
34
35 typedef enum
36 {
37         pango_align_left = 0,
38         pango_align_center,
39         pango_align_right
40 } pango_align;
41
42 static pthread_mutex_t pango_mutex = PTHREAD_MUTEX_INITIALIZER;
43
44 struct producer_pango_s
45 {
46         struct mlt_producer_s parent;
47         int   width;
48         int   height;
49         GdkPixbuf *pixbuf;
50         char *fgcolor;
51         char *bgcolor;
52         int   align;
53         int   pad;
54         char *markup;
55         char *text;
56         char *font;
57         int   weight;
58 };
59
60 // special color type used by internal pango routines
61 typedef struct
62 {
63         uint8_t r, g, b, a;
64 } rgba_color;
65
66 // Forward declarations
67 static int producer_get_frame( mlt_producer parent, mlt_frame_ptr frame, int index );
68 static void producer_close( mlt_producer parent );
69 static void pango_draw_background( GdkPixbuf *pixbuf, rgba_color bg );
70 static GdkPixbuf *pango_get_pixbuf( const char *markup, const char *text, const char *font,
71         rgba_color fg, rgba_color bg, int pad, int align, int weight, int size );
72
73 /** Return nonzero if the two strings are equal, ignoring case, up to
74     the first n characters.
75 */
76 int strncaseeq(const char *s1, const char *s2, size_t n)
77 {
78         for ( ; n > 0; n--)
79         {
80                 if (tolower(*s1++) != tolower(*s2++))
81                         return 0;
82         }
83         return 1;
84 }
85
86 /** Parse the alignment property.
87 */
88
89 static int alignment_parse( char* align )
90 {
91         int ret = pango_align_left;
92
93         if ( align == NULL );
94         else if ( isdigit( align[ 0 ] ) )
95                 ret = atoi( align );
96         else if ( align[ 0 ] == 'c' || align[ 0 ] == 'm' )
97                 ret = pango_align_center;
98         else if ( align[ 0 ] == 'r' )
99                 ret = pango_align_right;
100
101         return ret;
102 }
103
104 static PangoFT2FontMap *fontmap = NULL;
105
106 mlt_producer producer_pango_init( const char *filename )
107 {
108         producer_pango this = calloc( sizeof( struct producer_pango_s ), 1 );
109         if ( this != NULL && mlt_producer_init( &this->parent, this ) == 0 )
110         {
111                 mlt_producer producer = &this->parent;
112
113                 pthread_mutex_lock( &pango_mutex );
114                 if ( fontmap == NULL )
115                         fontmap = (PangoFT2FontMap*) pango_ft2_font_map_new();
116                 g_type_init();
117                 pthread_mutex_unlock( &pango_mutex );
118
119                 producer->get_frame = producer_get_frame;
120                 producer->close = ( mlt_destructor )producer_close;
121
122                 // Get the properties interface
123                 mlt_properties properties = MLT_PRODUCER_PROPERTIES( &this->parent );
124
125                 // Set the default properties
126                 mlt_properties_set( properties, "fgcolour", "0xffffffff" );
127                 mlt_properties_set( properties, "bgcolour", "0x00000000" );
128                 mlt_properties_set_int( properties, "align", pango_align_left );
129                 mlt_properties_set_int( properties, "pad", 0 );
130                 mlt_properties_set( properties, "text", "" );
131                 mlt_properties_set( properties, "font", "Sans 48" );
132                 mlt_properties_set( properties, "encoding", "UTF-8" );
133                 mlt_properties_set_int( properties, "weight", PANGO_WEIGHT_NORMAL );
134
135                 if ( filename == NULL || ( filename && ( !strcmp( filename, "" )
136                         // workaround for old kdenlive countdown generator
137                         || strstr( filename, "&lt;producer&gt;" ) ) ) )
138                 {
139                         mlt_properties_set( properties, "markup", "" );
140                 }
141                 else if ( filename[ 0 ] == '+' || strstr( filename, "/+" ) )
142                 {
143                         char *copy = strdup( filename + 1 );
144                         char *markup = copy;
145                         if ( strstr( markup, "/+" ) )
146                                 markup = strstr( markup, "/+" ) + 2;
147                         ( *strrchr( markup, '.' ) ) = '\0';
148                         while ( strchr( markup, '~' ) )
149                                 ( *strchr( markup, '~' ) ) = '\n';
150                         mlt_properties_set( properties, "resource", filename );
151                         mlt_properties_set( properties, "markup", markup );
152                         free( copy );
153                 }
154                 else if ( strstr( filename, ".mpl" ) ) 
155                 {
156                         int i = 0;
157                         mlt_properties contents = mlt_properties_load( filename );
158                         mlt_geometry key_frames = mlt_geometry_init( );
159                         struct mlt_geometry_item_s item;
160                         mlt_properties_set( properties, "resource", filename );
161                         mlt_properties_set_data( properties, "contents", contents, 0, ( mlt_destructor )mlt_properties_close, NULL );
162                         mlt_properties_set_data( properties, "key_frames", key_frames, 0, ( mlt_destructor )mlt_geometry_close, NULL );
163
164                         // Make sure we have at least one entry
165                         if ( mlt_properties_get( contents, "0" ) == NULL )
166                                 mlt_properties_set( contents, "0", "" );
167
168                         for ( i = 0; i < mlt_properties_count( contents ); i ++ )
169                         {
170                                 char *name = mlt_properties_get_name( contents, i );
171                                 char *value = mlt_properties_get_value( contents, i );
172                                 while ( value != NULL && strchr( value, '~' ) )
173                                         ( *strchr( value, '~' ) ) = '\n';
174                                 item.frame = atoi( name );
175                                 mlt_geometry_insert( key_frames, &item );
176                         }
177                         mlt_geometry_interpolate( key_frames );
178                 }
179                 else
180                 {
181                         FILE *f = fopen( filename, "r" );
182                         if ( f != NULL )
183                         {
184                                 char line[81];
185                                 char *markup = NULL;
186                                 size_t size = 0;
187                                 line[80] = '\0';
188                                 
189                                 while ( fgets( line, 80, f ) )
190                                 {
191                                         size += strlen( line ) + 1;
192                                         if ( markup )
193                                         {
194                                                 markup = realloc( markup, size );
195                                                 strcat( markup, line );
196                                         }
197                                         else
198                                         {
199                                                 markup = strdup( line );
200                                         }
201                                 }
202                                 fclose( f );
203
204                                 if ( markup[ strlen( markup ) - 1 ] == '\n' ) 
205                                         markup[ strlen( markup ) - 1 ] = '\0';
206
207                                 mlt_properties_set( properties, "resource", filename );
208                                 mlt_properties_set( properties, "markup", ( markup == NULL ? "" : markup ) );
209                                 free( markup );
210                         }
211                         else
212                         {
213                                 producer->close = NULL;
214                                 mlt_producer_close( producer );
215                                 producer = NULL;
216                                 free( this );
217                         }
218                 }
219
220                 return producer;
221         }
222         free( this );
223         return NULL;
224 }
225
226 static void set_string( char **string, const char *value, const char *fallback )
227 {
228         if ( value != NULL )
229         {
230                 free( *string );
231                 *string = strdup( value );
232         }
233         else if ( *string == NULL && fallback != NULL )
234         {
235                 *string = strdup( fallback );
236         }
237         else if ( *string != NULL && fallback == NULL )
238         {
239                 free( *string );
240                 *string = NULL;
241         }
242 }
243
244 rgba_color parse_color( char *color, unsigned int color_int )
245 {
246         rgba_color result = { 0xff, 0xff, 0xff, 0xff };
247
248         if ( !strcmp( color, "red" ) )
249         {
250                 result.r = 0xff;
251                 result.g = 0x00;
252                 result.b = 0x00;
253         }
254         else if ( !strcmp( color, "green" ) )
255         {
256                 result.r = 0x00;
257                 result.g = 0xff;
258                 result.b = 0x00;
259         }
260         else if ( !strcmp( color, "blue" ) )
261         {
262                 result.r = 0x00;
263                 result.g = 0x00;
264                 result.b = 0xff;
265         }
266         else if ( strcmp( color, "white" ) )
267         {
268                 result.r = ( color_int >> 24 ) & 0xff;
269                 result.g = ( color_int >> 16 ) & 0xff;
270                 result.b = ( color_int >> 8 ) & 0xff;
271                 result.a = ( color_int ) & 0xff;
272         }
273
274         return result;
275 }
276
277 /** Convert a string property to UTF-8
278 */
279 static int iconv_utf8( mlt_properties properties, const char *prop_name, const char* encoding )
280 {
281         char *text = mlt_properties_get( properties, prop_name );
282         int result = -1;
283         
284         iconv_t cd = iconv_open( "UTF-8", encoding );
285         if ( cd != ( iconv_t )-1 )
286         {
287                 char *inbuf_p = text;
288                 size_t inbuf_n = strlen( text );
289                 size_t outbuf_n = inbuf_n * 6;
290                 char *outbuf = mlt_pool_alloc( outbuf_n );
291                 char *outbuf_p = outbuf;
292                 
293                 memset( outbuf, 0, outbuf_n );
294
295                 if ( text != NULL && strcmp( text, "" ) && iconv( cd, &inbuf_p, &inbuf_n, &outbuf_p, &outbuf_n ) != -1 )
296                         mlt_properties_set( properties, prop_name, outbuf );
297                 else
298                         mlt_properties_set( properties, prop_name, "" );
299
300                 mlt_pool_release( outbuf );
301                 iconv_close( cd );
302                 result = 0;
303         }
304         return result;
305 }
306
307 static void refresh_image( mlt_frame frame, int width, int height )
308 {
309         // Pixbuf
310         GdkPixbuf *pixbuf = mlt_properties_get_data( MLT_FRAME_PROPERTIES( frame ), "pixbuf", NULL );
311
312         // Obtain properties of frame
313         mlt_properties properties = MLT_FRAME_PROPERTIES( frame );
314
315         // Obtain the producer pango for this frame
316         producer_pango this = mlt_properties_get_data( properties, "producer_pango", NULL );
317
318         // Obtain the producer 
319         mlt_producer producer = &this->parent;
320
321         // Obtain the producer properties
322         mlt_properties producer_props = MLT_PRODUCER_PROPERTIES( producer );
323
324         // Get producer properties
325         char *fg = mlt_properties_get( producer_props, "fgcolour" );
326         char *bg = mlt_properties_get( producer_props, "bgcolour" );
327         int align = alignment_parse( mlt_properties_get( producer_props, "align" ) );
328         int pad = mlt_properties_get_int( producer_props, "pad" );
329         char *markup = mlt_properties_get( producer_props, "markup" );
330         char *text = mlt_properties_get( producer_props, "text" );
331         char *font = mlt_properties_get( producer_props, "font" );
332         char *encoding = mlt_properties_get( producer_props, "encoding" );
333         int weight = mlt_properties_get_int( producer_props, "weight" );
334         int size = mlt_properties_get_int( producer_props, "size" );
335         int property_changed = 0;
336
337         if ( pixbuf == NULL )
338         {
339                 // Check for file support
340                 int position = mlt_properties_get_position( properties, "pango_position" );
341                 mlt_properties contents = mlt_properties_get_data( producer_props, "contents", NULL );
342                 mlt_geometry key_frames = mlt_properties_get_data( producer_props, "key_frames", NULL );
343                 struct mlt_geometry_item_s item;
344                 if ( contents != NULL )
345                 {
346                         char temp[ 20 ];
347                         mlt_geometry_prev_key( key_frames, &item, position );
348                         sprintf( temp, "%d", item.frame );
349                         markup = mlt_properties_get( contents, temp );
350                 }
351         
352                 // See if any properties changed
353                 property_changed = ( align != this->align );
354                 property_changed = property_changed || ( this->fgcolor == NULL || ( fg && strcmp( fg, this->fgcolor ) ) );
355                 property_changed = property_changed || ( this->bgcolor == NULL || ( bg && strcmp( bg, this->bgcolor ) ) );
356                 property_changed = property_changed || ( pad != this->pad );
357                 property_changed = property_changed || ( markup && this->markup && strcmp( markup, this->markup ) );
358                 property_changed = property_changed || ( text && this->text && strcmp( text, this->text ) );
359                 property_changed = property_changed || ( font && this->font && strcmp( font, this->font ) );
360                 property_changed = property_changed || ( weight != this->weight );
361
362                 // Save the properties for next comparison
363                 this->align = align;
364                 this->pad = pad;
365                 set_string( &this->fgcolor, fg, "0xffffffff" );
366                 set_string( &this->bgcolor, bg, "0x00000000" );
367                 set_string( &this->markup, markup, NULL );
368                 set_string( &this->text, text, NULL );
369                 set_string( &this->font, font, "Sans 48" );
370                 this->weight = weight;
371         }
372
373         if ( pixbuf == NULL && property_changed )
374         {
375                 rgba_color fgcolor = parse_color( this->fgcolor, mlt_properties_get_int( producer_props, "fgcolour" ) );
376                 rgba_color bgcolor = parse_color( this->bgcolor, mlt_properties_get_int( producer_props, "bgcolour" ) );
377
378                 if ( this->pixbuf )
379                         g_object_unref( this->pixbuf );
380                 this->pixbuf = NULL;
381
382                 // Convert from specified encoding to UTF-8
383                 if ( encoding != NULL && !strncaseeq( encoding, "utf-8", 5 ) && !strncaseeq( encoding, "utf8", 4 ) )
384                 {
385                         if ( markup != NULL && iconv_utf8( producer_props, "markup", encoding ) != -1 )
386                         {
387                                 markup = mlt_properties_get( producer_props, "markup" );
388                                 set_string( &this->markup, markup, NULL );
389                         }
390                         if ( text != NULL && iconv_utf8( producer_props, "text", encoding ) != -1 )
391                         {
392                                 text = mlt_properties_get( producer_props, "text" );
393                                 set_string( &this->text, text, NULL );
394                         }
395                 }
396                 
397                 // Render the title
398                 pixbuf = pango_get_pixbuf( markup, text, font, fgcolor, bgcolor, pad, align, weight, size );
399
400                 if ( pixbuf != NULL )
401                 {
402                         // Register this pixbuf for destruction and reuse
403                         mlt_properties_set_data( producer_props, "pixbuf", pixbuf, 0, ( mlt_destructor )g_object_unref, NULL );
404                         g_object_ref( pixbuf );
405                         mlt_properties_set_data( MLT_FRAME_PROPERTIES( frame ), "pixbuf", pixbuf, 0, ( mlt_destructor )g_object_unref, NULL );
406
407                         mlt_properties_set_int( producer_props, "real_width", gdk_pixbuf_get_width( pixbuf ) );
408                         mlt_properties_set_int( producer_props, "real_height", gdk_pixbuf_get_height( pixbuf ) );
409
410                         // Store the width/height of the pixbuf temporarily
411                         this->width = gdk_pixbuf_get_width( pixbuf );
412                         this->height = gdk_pixbuf_get_height( pixbuf );
413                 }
414         }
415         else if ( pixbuf == NULL && width > 0 && ( this->pixbuf == NULL || width != this->width || height != this->height ) )
416         {
417                 if ( this->pixbuf )
418                         g_object_unref( this->pixbuf );
419                 this->pixbuf = NULL;
420                 pixbuf = mlt_properties_get_data( producer_props, "pixbuf", NULL );
421         }
422
423         // If we have a pixbuf and a valid width
424         if ( pixbuf && width > 0 )
425         {
426                 char *interps = mlt_properties_get( properties, "rescale.interp" );
427                 int interp = GDK_INTERP_BILINEAR;
428
429                 if ( strcmp( interps, "nearest" ) == 0 )
430                         interp = GDK_INTERP_NEAREST;
431                 else if ( strcmp( interps, "tiles" ) == 0 )
432                         interp = GDK_INTERP_TILES;
433                 else if ( strcmp( interps, "hyper" ) == 0 || strcmp( interps, "bicubic" ) == 0 )
434                         interp = GDK_INTERP_HYPER;
435
436 // fprintf(stderr,"%s: scaling from %dx%d to %dx%d\n", __FILE__, this->width, this->height, width, height);
437
438                 // Note - the original pixbuf is already safe and ready for destruction
439                 this->pixbuf = gdk_pixbuf_scale_simple( pixbuf, width, height, interp );
440
441                 // Store width and height
442                 this->width = width;
443                 this->height = height;
444         }
445
446         // Set width/height
447         mlt_properties_set_int( properties, "width", this->width );
448         mlt_properties_set_int( properties, "height", this->height );
449         mlt_properties_set_int( properties, "real_width", mlt_properties_get_int( producer_props, "real_width" ) );
450         mlt_properties_set_int( properties, "real_height", mlt_properties_get_int( producer_props, "real_height" ) );
451 }
452
453 static int producer_get_image( mlt_frame frame, uint8_t **buffer, mlt_image_format *format, int *width, int *height, int writable )
454 {
455         int error = 0;
456         producer_pango this = ( producer_pango ) mlt_frame_pop_service( frame );
457
458         // Obtain properties of frame
459         mlt_properties properties = MLT_FRAME_PROPERTIES( frame );
460
461         *width = mlt_properties_get_int( properties, "rescale_width" );
462         *height = mlt_properties_get_int( properties, "rescale_height" );
463
464         mlt_service_lock( MLT_PRODUCER_SERVICE( &this->parent ) );
465
466         // Refresh the image
467         pthread_mutex_lock( &pango_mutex );
468         refresh_image( frame, *width, *height );
469
470         // Get width and height
471         *width = this->width;
472         *height = this->height;
473
474         // Always clone here to allow 'animated' text
475         if ( this->pixbuf )
476         {
477                 // Clone the image
478                 int image_size = this->width * this->height * 4;
479                 *buffer = mlt_pool_alloc( image_size );
480                 memcpy( *buffer, gdk_pixbuf_get_pixels( this->pixbuf ), image_size );
481
482                 // Now update properties so we free the copy after
483                 mlt_frame_set_image( frame, *buffer, image_size, mlt_pool_release );
484                 *format = mlt_image_rgb24a;
485         }
486         else
487         {
488                 error = 1;
489         }
490
491         pthread_mutex_unlock( &pango_mutex );
492         mlt_service_unlock( MLT_PRODUCER_SERVICE( &this->parent ) );
493
494         return error;
495 }
496
497 static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int index )
498 {
499         producer_pango this = producer->child;
500
501         // Generate a frame
502         *frame = mlt_frame_init( MLT_PRODUCER_SERVICE( producer ) );
503
504         // Obtain properties of frame and producer
505         mlt_properties properties = MLT_FRAME_PROPERTIES( *frame );
506
507         // Set the producer on the frame properties
508         mlt_properties_set_data( properties, "producer_pango", this, 0, NULL, NULL );
509
510         // Update timecode on the frame we're creating
511         mlt_frame_set_position( *frame, mlt_producer_position( producer ) );
512         mlt_properties_set_position( properties, "pango_position", mlt_producer_frame( producer ) );
513
514         // Refresh the pango image
515         pthread_mutex_lock( &pango_mutex );
516         refresh_image( *frame, 0, 0 );
517         pthread_mutex_unlock( &pango_mutex );
518
519         // Set producer-specific frame properties
520         mlt_properties_set_int( properties, "progressive", 1 );
521         mlt_properties_set_double( properties, "aspect_ratio", 1 );
522
523         // Stack the get image callback
524         mlt_frame_push_service( *frame, this );
525         mlt_frame_push_get_image( *frame, producer_get_image );
526
527         // Calculate the next timecode
528         mlt_producer_prepare_next( producer );
529
530         return 0;
531 }
532
533 static void producer_close( mlt_producer parent )
534 {
535         producer_pango this = parent->child;
536         if ( this->pixbuf )
537                 g_object_unref( this->pixbuf );
538         free( this->fgcolor );
539         free( this->bgcolor );
540         free( this->markup );
541         free( this->text );
542         free( this->font );
543         parent->close = NULL;
544         mlt_producer_close( parent );
545         free( this );
546 }
547
548 static void pango_draw_background( GdkPixbuf *pixbuf, rgba_color bg )
549 {
550         int ww = gdk_pixbuf_get_width( pixbuf );
551         int hh = gdk_pixbuf_get_height( pixbuf );
552         uint8_t *p = gdk_pixbuf_get_pixels( pixbuf );
553         int i, j;
554
555         for ( j = 0; j < hh; j++ )
556         {
557                 for ( i = 0; i < ww; i++ )
558                 {
559                         *p++ = bg.r;
560                         *p++ = bg.g;
561                         *p++ = bg.b;
562                         *p++ = bg.a;
563                 }
564         }
565 }
566
567 static GdkPixbuf *pango_get_pixbuf( const char *markup, const char *text, const char *font, rgba_color fg, rgba_color bg, int pad, int align, int weight, int size )
568 {
569         PangoContext *context = pango_ft2_font_map_create_context( fontmap );
570         PangoLayout *layout = pango_layout_new( context );
571         int w, h, x;
572         int i, j;
573         GdkPixbuf *pixbuf = NULL;
574         FT_Bitmap bitmap;
575         uint8_t *src = NULL;
576         uint8_t* dest = NULL;
577         uint8_t *d, *s, a;
578         int stride;
579         PangoFontDescription *desc = pango_font_description_from_string( font );
580
581         pango_ft2_font_map_set_resolution( fontmap, 72, 72 );
582         pango_layout_set_width( layout, -1 ); // set wrapping constraints
583         pango_font_description_set_weight( desc, ( PangoWeight ) weight  );
584         if ( size != 0 )
585                 pango_font_description_set_absolute_size( desc, PANGO_SCALE * size );
586         pango_layout_set_font_description( layout, desc );
587 //      pango_layout_set_spacing( layout, space );
588         pango_layout_set_alignment( layout, ( PangoAlignment ) align  );
589         if ( markup != NULL && strcmp( markup, "" ) != 0 )
590         {
591                 pango_layout_set_markup( layout, markup, strlen( markup ) );
592         }
593         else if ( text != NULL && strcmp( text, "" ) != 0 )
594         {
595                 // Replace all ~'s with a line feed (silly convention, but handy)
596                 char *copy = strdup( text );
597                 while ( strchr( copy, '~' ) )
598                         ( *strchr( copy, '~' ) ) = '\n';
599                 pango_layout_set_text( layout, copy, strlen( copy ) );
600                 free( copy );
601         }
602         else
603         {
604                 // Pango doesn't like empty strings
605                 pango_layout_set_text( layout, "  ", 2 );
606         }
607         pango_layout_get_pixel_size( layout, &w, &h );
608
609         // Interpret size property as an absolute pixel height and compensate for
610         // freetype's "interpretation" of our absolute size request. This gives
611         // precise control over compositing and better quality by reducing scaling
612         // artifacts with composite geometries that constrain the dimensions.
613         // If you do not want this, then put the size in the font property or in
614         // the pango markup.
615         if ( size != 0 )
616         {
617                 pango_font_description_set_absolute_size( desc, PANGO_SCALE * size * size/h );
618                 pango_layout_set_font_description( layout, desc );
619                 pango_layout_get_pixel_size( layout, &w, &h );
620         }
621
622         if ( pad == 0 )
623             pad = 1;
624
625         pixbuf = gdk_pixbuf_new( GDK_COLORSPACE_RGB, TRUE /* has alpha */, 8, w + 2 * pad, h + 2 * pad );
626         pango_draw_background( pixbuf, bg );
627
628         stride = gdk_pixbuf_get_rowstride( pixbuf );
629
630         bitmap.width     = w;
631         bitmap.pitch     = 32 * ( ( w + 31 ) / 31 );
632         bitmap.rows      = h;
633         bitmap.buffer    = mlt_pool_alloc( h * bitmap.pitch );
634         bitmap.num_grays = 256;
635         bitmap.pixel_mode = ft_pixel_mode_grays;
636
637         memset( bitmap.buffer, 0, h * bitmap.pitch );
638
639         pango_ft2_render_layout( &bitmap, layout, 0, 0 );
640
641         src = bitmap.buffer;
642         x = ( gdk_pixbuf_get_width( pixbuf ) - w - 2 * pad ) * align / 2 + pad;
643         dest = gdk_pixbuf_get_pixels( pixbuf ) + 4 * x + pad * stride;
644         j = h;
645
646         while( j -- )
647         {
648                 d = dest;
649                 s = src;
650                 i = w;
651                 while( i -- )
652                 {
653                         a = *s ++;
654                         *d++ = ( a * fg.r + ( 255 - a ) * bg.r ) >> 8;
655                         *d++ = ( a * fg.g + ( 255 - a ) * bg.g ) >> 8;
656                         *d++ = ( a * fg.b + ( 255 - a ) * bg.b ) >> 8;
657                         *d++ = ( a * fg.a + ( 255 - a ) * bg.a ) >> 8;
658                 }
659                 dest += stride;
660                 src += bitmap.pitch;
661         }
662         mlt_pool_release( bitmap.buffer );
663         pango_font_description_free( desc );
664         g_object_unref( layout );
665         g_object_unref( context );
666
667         return pixbuf;
668 }