ビジネスでは、画像 (本の表紙の画像) にテキストを動的に追加し、フォント サイズ、フォント、色、位置を制御する必要があります
テスト コード:
1 string path = @"E:\cover.png"; 2 3 Bitmap bmp = new Bitmap(path); 4 Graphics g = Graphics.FromImage(bmp); 5 String str = "贤愚经"; 6 Font font = new Font("仿宋_GB2312", 14, FontStyle.Bold);//设置字体,大小,粗细 7 SolidBrush sbrush = new SolidBrush(Color.White);//设置颜色 8 int base_left = 10; 9 int left_space = 30;10 11 int base_top = 27;12 int top_space = 27;13 for (int i = 0; i < str.Length; i++)14 {15 if (i > 13)16 {17 continue;18 g.DrawString(str[i] + "", font, sbrush, new PointF(base_left + (left_space * 2), base_top + (top_space * (i - 14))));19 }20 else if (i > 6)21 {22 g.DrawString(str[i] + "", font, sbrush, new PointF(base_left + (left_space * 1), base_top + (top_space * (i - 7))));23 }24 else25 {26 g.DrawString(str[i] + "", font, sbrush, new PointF(base_left, base_top + (top_space * i)));27 }28 29 }30 31 //MemoryStream ms = new MemoryStream();32 //bmp.Save(ms, System.Drawing.Imaging.ImageFormat.Bmp);33 bmp.Save(@"E:\cover1.png");
フォントの選択:
Helvetica: SimHei
Songli: SimSun
New Songti :NSimSun
FangSong
Kaiti: KaiTi
FangSong_GB2312: FangSong_GB2312
Kaiti_GB2312: KaiTi_GB2312
Microsoft YaHei: Microsoft YaHei
完了。
以上がC# 画像にテキストのサンプル コードを追加するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。