3

它就像我所说的那样奇怪。o.0。

我已经检查并仔细检查了,甚至不明白为什么它不起作用...... 正在发生的事情的图像

下面是使用的代码:

try {
    if (!(Directory.Exists(@"C:\SimpleSkype\Identitys")))
        Directory.CreateDirectory(@"C:\SimpleSkype\Identitys");
    //Regex rgx = new Regex("[^a-zA-Z0-9  -]");
    //String dd = rgx.Replace(u.Handle, "");
    string file = Path.Combine(@"C:\", "SimpleSkype", "Identitys", "victim.jpg");
    SaveSkypeAvatarToDisk(u.Handle, file);
    using (Image image = Image.FromFile(@"C:\SimpleSkype\Identitys\victim.jpg")) {
        input += ImageToBase64(image, System.Drawing.Imaging.ImageFormat.Jpeg) + "|";
    }
} catch (Exception eee) {
    MessageBox.Show(eee.ToString());
}
4

1 回答 1

0

尝试使用 Application.DoEvents() ( http://msdn.microsoft.com/en-us/library/system.windows.forms.application.doevents.aspx ),这应该会延迟下一行执行,直到创建文件。

于 2013-07-31T21:35:29.723 回答