我正在尝试将图像文件从硬盘加载到GTK#中的图像小部件。我知道Pixbuf用于表示图像。在.net中我使用了Bitmap b=Bitmap.from File ("c:\windows\file.jpg")
并指定PictureBox=b
;
我如何使用Image Widget
更新
我试过
protected void OnButton2ButtonPressEvent (object o, ButtonPressEventArgs args)
{
var buffer = System.IO.File.ReadAllBytes ("i:\\Penguins.jpg");
var pixbuf = new Gdk.Pixbuf (buffer);
image103.Pixbuf = pixbuf;
}
但它不起作用。
答案 0 :(得分:4)
试试这个:
var buffer = System.IO.File.ReadAllBytes ("path\\to\\file");
var pixbuf = new Gdk.Pixbuf (buffer);
image.Pixbuf = pixbuf;
你也可以像这样创建一个pixbuf:
var pixbuf = new Gdk.Pixbuf ("path\\to\\file");
但是当我尝试使用包含一些俄语符号的路径的构造函数时,由于编码错误,我有一个例外。
<强>更新强> 我不知道在gtk#image stretch选项中设置任何遗留方法,我通常会通过创建新控件来解决这个问题。因此,右键单击项目 - >添加 - >创建窗口小部件并将名称设置为 ImageControl 。在创建的小部件上添加图像。然后编辑 ImageControl 的代码,如下所示:
[System.ComponentModel.ToolboxItem (true)]
public partial class ImageControl : Gtk.Bin
{
private Pixbuf original;
private bool resized;
public Gdk.Pixbuf Pixbuf {
get
{
return image.Pixbuf;
}
set
{
original = value;
image.Pixbuf = value;
}
}
public ImageControl ()
{
this.Build ();
}
protected override void OnSizeAllocated (Gdk.Rectangle allocation)
{
if ((image.Pixbuf != null) && (!resized)) {
var srcWidth = original.Width;
var srcHeight = original.Height;
int resultWidth, resultHeight;
ScaleRatio (srcWidth, srcHeight, allocation.Width, allocation.Height, out resultWidth, out resultHeight);
image.Pixbuf = original.ScaleSimple (resultWidth, resultHeight, InterpType.Bilinear);
resized = true;
} else {
resized = false;
base.OnSizeAllocated (allocation);
}
}
private static void ScaleRatio(int srcWidth, int srcHeight, int destWidth, int destHeight, out int resultWidth, out int resultHeight)
{
var widthRatio = (float)destWidth / srcWidth;
var heigthRatio = (float)destHeight / srcHeight;
var ratio = Math.Min(widthRatio, heigthRatio);
resultHeight = (int)(srcHeight * ratio);
resultWidth = (int)(srcWidth * ratio);
}
}
现在,您可以使用 ImageControl 小部件的 Pixbuf 属性设置图片。