2016-06-27 3 views
1

Pango가 컬러 문양 텍스트 :내가 렌더링하기 위해 다음과 같은 기술을 사용하는 프로젝트 일하고

  • 하는 Freetype - 문양 매핑
  • Pango가 - 텍스트 레이아웃
  • 의 라이브러리에 의존 - 그리기 (글꼴 색상 및 그래픽 나머지 시스템)

이제 색이있는 이모티콘을 렌더링하는 기능을 추가하려고합니다. 지금은 Freetype이 컬러 글리프를 지정하는 지원을 추가 한 것으로 보이지만 Pango를 레이아웃 컬러 글꼴로 가져 오는 데 문제가 있습니다. 이 방법으로 색 이모티콘을 렌더링 할 수 있습니까? Skia에서 카이로로 전환하면 도움이 될까요?

마찬가지로 작은 예제 https://developer.gnome.org/pango/stable/pango-Cairo-Rendering.html을 사용하고 텍스트 대신 그림 이모티콘을 사용하려고했는데 지정된 글꼴이 "Apple Color Emoji"인데도 글리프가 표시되지 않습니다.

#include <math.h> 
#include <pango/pangocairo.h> 
#include <cairo.h> 

static void 
draw_text (cairo_t *cr) 
{ 
#define RADIUS 150 
#define N_WORDS 10 
#define FONT "Apple Color Emoji" 

    PangoLayout *layout; 
    PangoFontDescription *desc; 
    int i; 

    /* Center coordinates on the middle of the region we are drawing 
    */ 
    cairo_translate (cr, RADIUS, RADIUS); 

    /* Create a PangoLayout, set the font and text */ 
    layout = pango_cairo_create_layout (cr); 

    pango_layout_set_text (layout, "", -1); 
    desc = pango_font_description_from_string (FONT); 
    pango_layout_set_font_description (layout, desc); 
    pango_font_description_free (desc); 

    /* Draw the layout N_WORDS times in a circle */ 
    for (i = 0; i < N_WORDS; i++) 
    { 
     int width, height; 
     double angle = (360. * i)/N_WORDS; 
     double red; 

     cairo_save (cr); 

     /* Gradient from red at angle == 60 to blue at angle == 240 */ 
     red = (1 + cos ((angle - 60) * G_PI/180.))/2; 
     cairo_set_source_rgb (cr, red, 0, 1.0 - red); 

     cairo_rotate (cr, angle * G_PI/180.); 

     /* Inform Pango to re-layout the text with the new transformation */ 
     pango_cairo_update_layout (cr, layout); 

     pango_layout_get_size (layout, &width, &height); 
     cairo_move_to (cr, - ((double)width/PANGO_SCALE)/2, - RADIUS); 
     pango_cairo_show_layout (cr, layout); 

     cairo_restore (cr); 
    } 

    /* free the layout object */ 
    g_object_unref (layout); 
} 

int main (int argc, char **argv) 
{ 
    cairo_t *cr; 
    char *filename; 
    cairo_status_t status; 
    cairo_surface_t *surface; 


    surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32, 
             2 * RADIUS, 2 * RADIUS); 
    cr = cairo_create (surface); 

    cairo_set_source_rgb (cr, 1.0, 1.0, 1.0); 
    cairo_paint (cr); 
    draw_text (cr); 
    cairo_destroy (cr); 

    status = cairo_surface_write_to_png (surface, "/home/mikeobrien/emojiRendering/TESTFILE"); 
    cairo_surface_destroy (surface); 

    if (status != CAIRO_STATUS_SUCCESS) 
    { 
     g_printerr ("Could not save png to '%s'\n", "/home/mikeobrien/emojiRendering/TESTFILE"); 
     return 1; 
    } 


    return 0; 
} 

Yeilds this

+0

글꼴 렌더링 문제가 더 많은 것처럼 보입니다. – oldtechaa

+1

글꼴을 사용하고 있습니까? – oldtechaa

+0

적어도 cairo는 색칠 된 글리프를 지원하지 않습니다. 이 개념은 그리기 모델에 맞지 않습니다 (예 : 빨간색 원본과 글리프를 그릴 때 발생하는 동작 및 XOR 연산자). –

답변

1

당신은 노토 컬러 이모티콘을 사용하여 시도해야 할 수 있습니다. FreeType은 Apple의 색상 이모티콘 표준을 지원하지 않습니다.

+1

이 답변은 실제로 댓글에 포함되어 있습니다. 나는 당신이 코멘트에 대한 대표자를 가지고 있지 않다는 것을 알고 있으며, 이것은 가능한 해결책에 대한 힌트를 제공한다. 이 답변을 답안 지침에 더 잘 맞게 편집 할 것입니다. 가입 해 주셔서 감사합니다. – oldtechaa

관련 문제