0

没什么好解释的,因为我没有合乎逻辑的解释为什么这不起作用:s 在此处输入图像描述

只是为了确认,这是一个“jpeg”文件扩展名,名称是正确的,我没有看到任何其他问题,说明它为什么无法工作。

4

1 回答 1

6

您将其保存为以“jpg”结尾的文件名,然后从以“jpeg”结尾的文件名加载。假设您正在尝试加载刚刚保存的文件,那就是问题所在。

(我会复制代码以指出有问题的行,但您只将其作为图像包含...)

我强烈建议构建文件名一次,并使用该变量两次:

// I prefer using Path.Combine over string concatenation, but both will work.
// You might want to change "Identitys" to "Identities" though :)
string file = Path.Combine(@"C:\", "SimpleSkype", "Identitys", dd + ".jpg");
SaveSkypeAvatarToDisk(u.Handle, file);
using (Image image = Image.FromFile(file))
{
    ...
}
于 2013-03-14T07:15:29.530 回答