我試圖解決更改Bitmap對象的值ImageDescription的問題。爲文件添加說明。搜索相關主題,我還沒有找到解決方案。圖像屬性的值(C#)
我的代碼:
public Bitmap ImageWithComment(Bitmap image)
{
string filePath = @"C:\1.jpg";
var data = Encoding.UTF8.GetBytes("my comment");
var propItem = image.PropertyItems.FirstOrDefault();
propItem.Type = 2;
propItem.Id = 40092;
propItem.Len = data.Length;
propItem.Value = data;
image.SetPropertyItem(propItem);
image.Save(filePath);
return image;
}
但隨着新的評論圖像不保存在文件夾中((請幫我
後的圖像源相同的文件?這可能是問題。 – 2013-03-05 18:29:00
你有什麼異常嗎? – 2013-03-05 18:31:39
System.ArgumentException:無效的參數。 System.Drawing.Image.get_Width()在System.Drawing.Bitmap .. ctor(圖片圖像)在WallpapersSite.Code.ImageActions.SaveImage(位圖圖像) – 2013-03-05 20:17:22