0

我从套接字通信接收imageasbyte[]然后我尝试在pictureBox. 当我运行代码时,它只显示一条消息错误:"NullReferenceException"

处理异常的捕获是ex1并且我检查了并且pic不是null所以我无法弄清楚为什么会发生这个异常。

这是我的代码:

try
{
    if (pictureBox1.InvokeRequired)
    {
        try
        {
            pic = imageEmp;
            addControlHandler c = new addControlHandler(addPic);
            this.Invoke(c);
        }
        catch (Exception exc) { MessageBox.Show(exc.Message); }
    }
    else
    {
        pictureBox1.Image = ByteToImage(imageEmp);
    }
}
catch (Exception ex1) 
{
    MessageBox.Show(ex1.Message);                
}

public void addPic()  //when invokeRequired == true
{
    pictureBox1.Image = ByteToImage(pic); 
}

这是要转换为的byte[]代码Image

public Image ByteToImage(byte[] imageBytes)  //convert byte[] to image
{
    MemoryStream ms = new MemoryStream(imageBytes, 0, imageBytes.Length);
    ms.Write(imageBytes, 0, imageBytes.Length);
    Image image = new Bitmap(ms); 
    return image;
}

更新 1:关于汉斯的回答,我对他进行了以下更改:

将我的 ByteToImage 更改为 Hans 的答案并检查错误在哪里,我在以下位置添加了以下行this.Invoke(c)

if (c != null)
{
    try
    {
        this.Invoke(c);
    }
    catch (Exception e_c)
    {
        MessageBox.Show(e_c.Message, "exc from e_c");
    }
}

这给了我一个例外:NullReferenceException

谢谢你的帮助!

更新 2:现在它正在工作,我发送 JPEG 图像而不是 JPG 并且它现在显示它。不知道为什么会发生这种情况,但现在它工作正常。

4

1 回答 1

0

这是一个您可以尝试的示例,我刚刚使用我自己的方法对此进行了测试,此方法有效,因此请用我的 btnStudentPic_Click 中的代码行替换您的代码,让我知道这是否适合您..

对于 Compact Framework,请改用此方法

public static byte[] ReadAllBytes(string path)
{
byte[] buffer;

using (FileStream fs = new FileStream(path, FileMode.Open,
FileAccess.Read, FileShare.Read))
{
int offset = 0;
int count = (int)fs.Length;
buffer = new byte[count];
while (count > 0)
{
int bytesRead = fs.Read(buffer, offset, count);
offset += bytesRead;
count -= bytesRead;
}
}

return buffer;
}

//下面的 Windows 示例不用于 CF

    private void btnStudentPic_Click(object sender, EventArgs e)
    {
        Image picture = (Image)BrowseForPicture();
        this.picStudent.Image = picture;
        this.picStudent.SizeMode = PictureBoxSizeMode.StretchImage;
    }

    /// <summary>
    /// 
    /// </summary>
    /// <returns></returns>
    private Bitmap BrowseForPicture()
    {
       // Bitmap picture = null;

        try
        {
            if (this.fdlgStudentPic.ShowDialog() == DialogResult.OK)
            {
                byte[] imageBytes = File.ReadAllBytes(this.fdlgStudentPic.FileName);
                StudentPic = new Bitmap( this.fdlgStudentPic.FileName);
                StuInfo.StudentPic = imageBytes;
            }
            else
            {
                StudentPic = Properties.Resources.NoPhotoAvailable;
            }
        }
        catch (Exception)
        {
            MessageBox.Show("That was not a picture.", "Browse for picture");
            StudentPic = this.BrowseForPicture();
        }

        return StudentPic;
    }
于 2012-08-01T18:27:51.697 回答