查看图像不支持给定路径的格式
The Given Path's Format Is Not Supported In Viewing Image
我在从文件夹路径查看图像时遇到问题。我不知道我该如何解决这个问题。我试过使用
我的代码
String Path = @"C:\Users\PC\Documents\Visual Studio 2012\ProjectName\image-folder\mypicture.jpg";
picturebox_view.Image = Image.FromFile("'" + Path + "'");
我收到以下错误消息
The Given Path's Format Is Not Supported...
当我尝试调试和检查“路径”的值时,它似乎是错误的。结果是这样
String Path = "C:\Users\PC\Documents\Visual Studio 2012\...";
我尝试使用带有替换参数的 Path2,但它似乎对我不起作用。
这是我的替换代码(不工作)
String Path = @"C:\Users\PC\Documents\Visual Studio 2012\ProjectName\image-folder\mypicture.jpg";
String Path2 = Path.Replace(@"\", @"\");
picturebox_view.Image = Image.FromFile("'" + Path2 + "'");
在此先感谢我的程序员们。
您看到调试器显示 C# 字符串文字。该字符串实际上没有双斜杠。
您真正的问题是没有 'C:
驱动器。不要在路径两边加上引号。
我在从文件夹路径查看图像时遇到问题。我不知道我该如何解决这个问题。我试过使用
我的代码
String Path = @"C:\Users\PC\Documents\Visual Studio 2012\ProjectName\image-folder\mypicture.jpg";
picturebox_view.Image = Image.FromFile("'" + Path + "'");
我收到以下错误消息
The Given Path's Format Is Not Supported...
当我尝试调试和检查“路径”的值时,它似乎是错误的。结果是这样
String Path = "C:\Users\PC\Documents\Visual Studio 2012\...";
我尝试使用带有替换参数的 Path2,但它似乎对我不起作用。
这是我的替换代码(不工作)
String Path = @"C:\Users\PC\Documents\Visual Studio 2012\ProjectName\image-folder\mypicture.jpg";
String Path2 = Path.Replace(@"\", @"\");
picturebox_view.Image = Image.FromFile("'" + Path2 + "'");
在此先感谢我的程序员们。
您看到调试器显示 C# 字符串文字。该字符串实际上没有双斜杠。
您真正的问题是没有 'C:
驱动器。不要在路径两边加上引号。