1. ホーム
  2. c#

c# bitmapにテキストを書き込む

2023-11-10 16:40:37

質問

次のような問題があります。私はC#のWindowsフォームでいくつかのグラフィックスを作成したい。 私は私のプログラムにビットマップを読み込み、その後、このビットマップにいくつかのテキストを書きたいと思います。最終的には、この画像をpictureBoxにロードしたいのです。そして、それは私の質問です。どのように私はそれを行うことができますか?

例、それはどのように動作しなければなりません。

Bitmap a = new Bitmap(@"path\picture.bmp");
a.makeTransparent();
// ? a.writeText("some text", positionX, positionY);
pictuteBox1.Image = a;

を行うことは可能ですか?

どのように解決するのですか?

Bitmap bmp = new Bitmap("filename.bmp");

RectangleF rectf = new RectangleF(70, 90, 90, 50);

Graphics g = Graphics.FromImage(bmp);

g.SmoothingMode = SmoothingMode.AntiAlias;
g.InterpolationMode = InterpolationMode.HighQualityBicubic;
g.PixelOffsetMode = PixelOffsetMode.HighQuality;
g.DrawString("yourText", new Font("Tahoma",8), Brushes.Black, rectf);

g.Flush();

image.Image=bmp;