-2
A
回答
0
try
{
Bitmap image1 = (Bitmap) Image.FromFile(@"C:\Documents and Settings\" +
@"All Users\Documents\My Music\music.bmp", true);
}
catch(System.IO.FileNotFoundException)
{
MessageBox.Show("There was an error opening the bitmap." +
"Please check the path.");
}
+0
使用'位圖(字符串)'什麼錯誤 - 字符串是文件路徑?只是好奇 – FakeCaleb
+0
*構造函數*或使用Image.FromFile沒有任何問題。 OP雖然忘了逃脫'\' –
+0
@FakeCaleb沒什麼好說的。我的答案是過度設計的,用例。 EpicKip的答案將是最合適的。 –
2
這通常只是起作用,您是否使用轉義字符來逃避轉義字符? 例子:
Bitmap bm = new Bitmap("D:\\newfolder\\1.jpg");
//Notice the \\ the second \ escapes the first
或逃生時這樣說:
Bitmap bm = new Bitmap(@"D:\newfolder\1.jpg");
//Notice the @ in front of the string, that means ignore the escape characters
您的原始字符串不逃避這個,因此插入一個換行符(\n
)。
相關問題
- 1. 位圖文件(cuptured圖像)轉換爲路徑文件
- 2. 如何快速將圖像文件路徑列表轉換爲位圖列表?
- 3. 將visual C++圖像文件路徑轉換爲xml
- 4. base64轉換圖像中的iOS編程文件路徑圖像
- 5. 如何將圖像的文件路徑轉換爲實際圖像?
- 6. 如何將文本文件轉換爲c中的位圖圖像?
- 7. 有沒有可能在C#中將varbinary圖像轉換爲其文件路徑?
- 8. 將圖像路徑轉換爲http url
- 9. 如何使用C++將圖像文件轉換爲ASCII圖像?
- 10. 如何將圖像轉換爲位圖
- 11. 如何將位圖轉換爲圖像
- 12. 如何拍攝多個圖像路徑並將其轉換爲位圖
- 13. 將WPF路徑轉換爲位圖文件
- 14. C# - 如何將圖像轉換爲8位彩色圖像?
- 15. C#:將位圖圖像流轉換爲avi文件
- 16. 如何轉換爲繪畫圖像轉換爲位圖
- 17. 如何將E01圖像文件轉換爲dd圖像文件?
- 18. 如何使用C#從mySQL獲取圖像文件路徑
- 19. Objective-C - 如何將文件路徑轉換爲shell符合文件路徑
- 20. 轉換PDF文件爲圖像 - VB/C#
- 21. 轉換和字符串(圖像的路徑)到位圖obj
- 22. 使用JQuery將XML圖像路徑轉換爲圖像
- 23. 如何將Assembly.CodeBase轉換爲C#中的文件系統路徑?
- 24. 如何將文件路徑轉換爲android中的文件探索視圖
- 25. 如何使用ALAssetsLibrary將圖像路徑轉換爲uiimage
- 26. 如何將base64圖像路徑轉換爲使用jquery的真實路徑。
- 27. 如何將SVG圖像「路徑」轉換爲單獨的PNG圖像?
- 28. 如何將圖像路徑轉換爲圖像對象我可以使用ImageChops?
- 29. 如何從OI文件管理器路徑獲取位圖圖像?
- 30. 將原始圖像從JAI GigE相機轉換爲位圖C#
反斜槓:\ n形成一個換行符。通過將它們加倍來逃避它們,或者在字符串前加@。 – dlatikay