我正在使用 url 下载图像并保存当前用户登录路径,但发生的错误是 gdi+ 中发生的一般错误。因为我认为系统获取这种格式的路径:-C:\\Users\\admin\\Pictures
但我想要C:\Users\admin\Pictures
所以请解决我的问题给stackoverflow团队
我正在使用此代码并收到错误....
string userpath=Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
string Sourceurl = url;
userpath += id;
userpath += ".jpg";
Bitmap varBmp = (Bitmap)Bitmap.FromStream(WebRequest.Create(url).GetResponse().GetResponseStream());
Bitmap newBitmap = new Bitmap(varBmp);
varBmp.Dispose();
varBmp = null;
//do something
newBitmap.Save(userpath, ImageFormat.Png);
shimpi mahesh 浦那。