文件瀏覽器及數位相框 -2.3.1freetype_pc

来源:http://www.cnblogs.com/CZM-/archive/2016/03/26/5322434.html
-Advertisement-
Play Games

例子 1.編譯free_type 配置 ./configure 編譯 make 安裝 sudo make install gcc -o example1 example1.c error: freetype/config/ftheader.h: No such file or directoryex ...


 

例子

#include <stdio.h>
#include <string.h>
#include <math.h>

#include <ft2build.h>
#include FT_FREETYPE_H


#define WIDTH   80
#define HEIGHT  80


/* origin is the upper left corner */
unsigned char image[HEIGHT][WIDTH];


/* Replace this function with something useful. */

void
draw_bitmap( FT_Bitmap*  bitmap,
             FT_Int      x,
             FT_Int      y)
{
  FT_Int  i, j, p, q;
  FT_Int  x_max = x + bitmap->width;
  FT_Int  y_max = y + bitmap->rows;


  for ( i = x, p = 0; i < x_max; i++, p++ )
  {
    for ( j = y, q = 0; j < y_max; j++, q++ )
    {
      if ( i < 0      || j < 0       ||
           i >= WIDTH || j >= HEIGHT )
        continue;

      image[j][i] |= bitmap->buffer[q * bitmap->width + p];
    }
  }
}


void
show_image( void )
{
  int  i, j;


  for ( i = 0; i < HEIGHT; i++ )
  {
    for ( j = 0; j < WIDTH; j++ )
      putchar( image[i][j] == 0 ? ' '
                                : image[i][j] < 128 ? '+'
                                                    : '*' );
    putchar( '\n' );
  }
}


int
main( int     argc,
      char**  argv )
{
  FT_Library    library;
  FT_Face       face;

  FT_GlyphSlot  slot;
  FT_Matrix     matrix;                 /* transformation matrix */
  FT_Vector     pen;                    /* untransformed origin  */
  FT_Error      error;

  char*         filename;
  char*         text;

  double        angle;
  int           target_height;
  int           n, num_chars;


  if ( argc != 3 )
  {
    fprintf ( stderr, "usage: %s font sample-text\n", argv[0] );
    exit( 1 );
  }

  filename      = argv[1];                           /* first argument     */
  text          = argv[2];                           /* second argument    */
  num_chars     = strlen( text );
  angle         = ( 0.0 / 360 ) * 3.14159 * 2;      /* use 25 degrees     */
  target_height = HEIGHT;

  error = FT_Init_FreeType( &library );              /* initialize library */
  /* error handling omitted */

  error = FT_New_Face( library, argv[1], 0, &face ); /* create face object */
  /* error handling omitted */

#if 0
  /* use 50pt at 100dpi */
  error = FT_Set_Char_Size( face, 50 * 64, 0,
                            100, 0 );                /* set character size */

    /* pixels = 50 /72 * 100 = 69 個像素點*/
#else
    FT_Set_Pixel_Sizes(face, 24, 0);
#endif
  /* error handling omitted */

  slot = face->glyph;

  /* set up matrix */
  matrix.xx = (FT_Fixed)( cos( angle ) * 0x10000L );
  matrix.xy = (FT_Fixed)(-sin( angle ) * 0x10000L );
  matrix.yx = (FT_Fixed)( sin( angle ) * 0x10000L );
  matrix.yy = (FT_Fixed)( cos( angle ) * 0x10000L );

  /* the pen position in 26.6 cartesian space coordinates; */
  /* start at (0,40) relative to the upper left corner  */
  pen.x = 0 * 64;
  pen.y = ( target_height - 40 ) * 64;

  for ( n = 0; n < num_chars; n++ )
  {
    /* set transformation */
    FT_Set_Transform( face, &matrix, &pen );

    /* load glyph image into the slot (erase previous one) */
    error = FT_Load_Char( face, text[n], FT_LOAD_RENDER );
    if ( error )
      continue;                 /* ignore errors */

    /* now, draw to our target surface (convert position) */
    draw_bitmap( &slot->bitmap,
                 slot->bitmap_left,
                 target_height - slot->bitmap_top );

    /* increment pen position */
    pen.x += slot->advance.x;
    pen.y += slot->advance.y;
  }

  show_image();

  FT_Done_Face    ( face );
  FT_Done_FreeType( library );

  return 0;
}

 

1.編譯free_type

配置  ./configure

編譯   make

安裝 sudo make install

 

gcc -o example1 example1.c

error: freetype/config/ftheader.h: No such file or directory
example1.c:12:10: error: #include expects "FILENAME" or <FILENAME>

指定頭文件目錄編譯

gcc -o example1 example1.c  -I /usr/local/include/freetype2

 

報錯缺庫

example1.c:(.text+0x1ea): undefined reference to `FT_Init_FreeType'
example1.c:(.text+0x216): undefined reference to `FT_New_Face'
example1.c:(.text+0x236): undefined reference to `FT_Set_Pixel_Sizes'
example1.c:(.text+0x24d): undefined reference to `cos'
example1.c:(.text+0x285): undefined reference to `sin'
example1.c:(.text+0x2bd): undefined reference to `sin'
example1.c:(.text+0x2f5): undefined reference to `cos'
example1.c:(.text+0x360): undefined reference to `FT_Set_Transform'
example1.c:(.text+0x386): undefined reference to `FT_Load_Char'
example1.c:(.text+0x409): undefined reference to `FT_Done_Face'
example1.c:(.text+0x415): undefined reference to `FT_Done_FreeType'

 

example1.c:(.text+0x24d): undefined reference to `cos'
example1.c:(.text+0x285): undefined reference to `sin'
example1.c:(.text+0x2bd): undefined reference to `sin'
example1.c:(.text+0x2f5): undefined reference to `cos'

指定庫編譯freetype    gcc -o example1 example1.c  -I /usr/local/include/freetype2 –lfreetype

 

缺數學類定義

example1.c:(.text+0x24d): undefined reference to `cos'
example1.c:(.text+0x285): undefined reference to `sin'
example1.c:(.text+0x2bd): undefined reference to `sin'
example1.c:(.text+0x2f5): undefined reference to `cos'

 

加-lm為加數學類庫意思   gcc -o example1 example1.c  -I /usr/local/include/freetype2 -lfreetype  -lm

 

執行exampe1  用宋體文件    顯示abcfg 

./example1   ./simsun.ttc  abcfg

 

 

abcfg_thumb2

 

陳志朋uicode碼為  48 96 D7 5F 67 0B

int chinese_str[] = {0x9648,0x5fd7,0x670b};

for ( n = 0; n < 4; n++ )
  {
    /* set transformation */
    FT_Set_Transform( face, &matrix, &pen );

    /* load glyph image into the slot (erase previous one) */
    error = FT_Load_Char( face, chinese_str[n], FT_LOAD_RENDER );
    if ( error )
      continue;                 /* ignore errors */

    /* now, draw to our target surface (convert position) */
    draw_bitmap( &slot->bitmap,
                 slot->bitmap_left,
                 target_height - slot->bitmap_top );

    /* increment pen position */
    pen.x += slot->advance.x;
    pen.y += slot->advance.y;
  }

 

./example1   ./simsun.ttc   abc

 

_thumb7

 

無法直接使用“abc陳志朋a”

使用寬字元

添加頭文件include<wchar.h>

#include <wchar.h>

  wchar_t * chinese_str = L"陳志朋~陳";
  unsigned int *p = (wchar_t *)chinese_str;

  int i = 0;

  printf("uicode: \n");
  for( i = 0; i < wcslen(chinese_str); i++)
  {
    printf("0x%x " , p[i]);
  }

  printf("\n");
  return 0;
 

85:27: error: converting to execution character set: Invalid or incomplete multibyte or wide character

 

代碼格式為asii應轉化為uicode碼

gcc -finput-charset=GBK -fexec-charset=UTF-8 -o example1 example1.c  -I /usr/local/include/freetype2 -lfreetype  -lm

 

結果

uicode:
0x9648 0x5fd7 0x670b 0x7e 0x9648

 

列印出位置大小參數

_thumb3

 

添加頭文件#include FT_GLYPH_H  

FT_BBox bbox;
      FT_Glyph  glyph;
  
    // 將FT_GlyphSlot glyph轉化為 FT_Glyph  glyph;
    error = FT_Get_Glyph( face->glyph, &glyph );
    if(error)
    {
        printf("FT_Get_Glyph error \n");
    }
    /*從glyph中獲取bbox*/
    FT_Glyph_Get_CBox( glyph, FT_GLYPH_BBOX_TRUNCATE, &bbox );
//漢字uicode碼
    printf("uicode: %x\n", chinese_str[n]);
    //漢字位置原點
    printf("origin.x /64 = %d , origin.y /64 = %d ", pen.x/64, pen.y/64);    
    //最小最大X,Y
    printf("x_min = %d ,x_max = %d, y_min = %d, y_max = %d \n", bbox.xMin, bbox.xMax, bbox.yMin, bbox.yMax);
    //X,Y偏移值
    printf("slot.advance.x/64 = %d, slot.advance.y/64 = %d \n", slot->advance.x/64, slot->advance.y/64);

 

 

結果

uicode: 9648
origin.x /64 = 0 , origin.y /64 = 40 x_min = 2 ,x_max = 23, y_min = 37, y_max = 60
slot.advance.x/64 = 24, slot.advance.y/64 = 0
uicode: 5fd7
origin.x /64 = 24 , origin.y /64 = 40 x_min = 25 ,x_max = 47, y_min = 38, y_max = 60
slot.advance.x/64 = 24, slot.advance.y/64 = 0
uicode: 670b
origin.x /64 = 48 , origin.y /64 = 40 x_min = 48 ,x_max = 70, y_min = 37, y_max = 59
slot.advance.x/64 = 24, slot.advance.y/64 = 0
uicode: 7e
origin.x /64 = 72 , origin.y /64 = 40 x_min = 73 ,x_max = 84, y_min = 55, y_max = 60
slot.advance.x/64 = 12, slot.advance.y/64 = 0
uicode: 9648
origin.x /64 = 84 , origin.y /64 = 40 x_min = 86 ,x_max = 107, y_min = 37, y_max = 60
slot.advance.x/64 = 24, slot.advance.y/64 = 0

 

 

 

image_thumb4

 

 

3_thumb7


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 開發的時候,寫了個很簡單的Sql ,大概就是 總數除以數量 得出的平均值。看起來很平常是不是!簡單來說就是 Total / Count 嘛!最多轉個2位小數用Convert就完事了對不對。 但是呢,有些數據的Count值本身是就是0的。然後就會報遇到以0作為除數的錯誤的問題了啊~ 然後演示幾種可能出 ...
  • 問題 我們在生產環境中使用SQLite時中發現建表報“table xxx already exists”錯誤,但DB文件中並沒有該表。後面才發現這個是SQLite在實現過程中的一個bug,而這個bug與數據字典的一致性相關,下麵這篇文章主要討論SQLite的緩存機制,以及緩存一致性實現的策略,希望對 ...
  • 昨天突然被問到traceroute的原理,一時竟也說不出來,有些命令平時雖然經常在用,但實際原理確並不瞭解,趁這次機會就來梳理一下。 traceroute:是網路診斷中,用來分析IP包經過那些路由的命令。 學前知識: IP包中有個欄位TTL,這個是最大跳轉次數的欄位,每經過一個路由器,值會-1,當值 ...
  • 顯示多行文字 兩行文字左邊對齊 簡單使用兩個迴圈顯示兩行字體 根據上一行字體的寬度來進行下一行左邊的計算 #include #include #include #include #include #include #include #include #include #include #includ... ...
  • ...
  • 使用位帶操作,位帶操作就是把每個比特膨脹成一個32位的字,當訪問這些字的時候就訪問這些比特位。 http://www.cnblogs.com/xiaobo-Linux/ 然後,埠使能: GPIO_SetBits(GPIOB,GPIO_Pin_5); 這個必須要寫,取地址。 GPIO_SetBits ...
  • TL431的主要作用是使得電路獲得更穩定的電壓,TL431是一種較為精密的可控穩壓源,有著較為特殊的動態阻抗。其動態響應速度快,輸出雜訊低,價格低廉。 註意上述一句話概括,就是便宜,精密可控穩壓源TL431。 TL431的輸出電壓可以通過兩個電阻任意地設置到從2.5V到36V電壓,工作電流可以從0. ...
  • 交叉編譯:tar xjf freetype-2.4.10.tar.bz2 ./configure --host=arm-linuxmakemake DESTDIR=$PWD/tmp install find -name stdio.h 平時使用#include<stdio.h>路徑 ./arm-li ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...