将位图转换为 Pixbuf

Convert Bitmap to Pixbuf

我打算在 gtk 图像中显示我生成的位图。

但它只支持 Pixbuf。 如何将Bitmap转换成Pixbuf。

我可以使用 TypeConverter 来做这个吗?

以不同的方式完成。 除了转换,我已经重新加载了图像。

protected void OnBtnGenClicked (object sender, EventArgs e)
{
    Bitmap bmp = new Bitmap(300, 300);
    using (Graphics g = Graphics.FromImage(bmp))
    {
        Font font = new Font("Arial", 20, FontStyle.Bold, GraphicsUnit.Point);
        g.Clear(Color.White);
        g.DrawString(txtMessage.Text, font, Brushes.Black, 0, 0);
    }
    bmp.Save("d:/image.png", ImageFormat.Png);
    var buffer = System.IO.File.ReadAllBytes ("d:/image.png");
    var pixbuf = new Gdk.Pixbuf (buffer);
    image1.Pixbuf = pixbuf;
}