如何從位圖獲取版權日期?如何獲取位圖的屬性?
private void toolStripMenuItemLoadImage_Click(object sender, EventArgs e)
{
using (OpenFileDialog ofd = new OpenFileDialog())
{
ofd.Title = "Load Image";
if (ofd.ShowDialog() == DialogResult.OK)
{
firstLoaded = new Bitmap(ofd.FileName);
String details = //Grab the copyright date of the image here;
this.Invalidate();
}
}
isLoaded = true;
}
你是什麼意思版權日期? – SimpleVar 2012-03-26 05:22:49
對於這樣的事情,位圖文件格式沒有空間。 – 2012-03-26 05:24:12
我的意思是像圖片的創建日期,最後修改等等的東西...這可能嗎? – BigBug 2012-03-26 05:30:55