C#實現(xiàn)給圖片添加日期信息的示例詳解
更新時間:2022年12月09日 15:44:59 作者:芝麻粒兒
這篇文章主要為大家詳細介紹了如何利用C#實現(xiàn)給圖片添加日期信息,文中的示例代碼講解詳細,對我們學(xué)習(xí)C#有一定的幫助,感興趣的小伙伴可以了解一下
實踐過程
效果

代碼
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public string flag = null;
PropertyItem[] pi;
string TakePicDateTime;
int SpaceLocation;
string pdt;
string ptm;
Bitmap Pic;
Graphics g;
Thread td;
private void button5_Click(object sender, EventArgs e)
{
Application.Exit();
}
private void button1_Click(object sender, EventArgs e)
{
string[] IMG;
listBox1.Items.Clear();
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
IMG = openFileDialog1.FileNames;
if (IMG.Length > 0)
{
for (int i = 0; i < IMG.Length; i++)
{
listBox1.Items.Add(IMG[i]);
}
}
flag = IMG.Length.ToString();
}
}
private void button2_Click(object sender, EventArgs e)
{
listBox1.Items.Clear();
flag = null;
}
private void button3_Click(object sender, EventArgs e)
{
if (folderBrowserDialog1.ShowDialog() == DialogResult.OK)
{
txtSavePath.Text = folderBrowserDialog1.SelectedPath;
}
}
private void button4_Click(object sender, EventArgs e)
{
if (flag == null || txtSavePath.Text == "")
{
return;
}
else
{
toolStripProgressBar1.Visible = true;
td = new Thread(new ThreadStart(AddDate));
td.Start();
}
}
private void AddDate()
{
Font normalContentFont = new Font("宋體", 36, FontStyle.Bold);
Color normalContentColor = Color.Red;
int kk = 1;
toolStripProgressBar1.Maximum = listBox1.Items.Count;
toolStripProgressBar1.Minimum = 1;
toolStripStatusLabel1.Text = "開始添加數(shù)碼相片拍攝日期";
for (int i = 0; i < listBox1.Items.Count; i++)
{
pi = GetExif(listBox1.Items[i].ToString());
//獲取元數(shù)據(jù)中的拍照日期時間,以字符串形式保存
TakePicDateTime = GetDateTime(pi);
//分析字符串分別保存拍照日期和時間的標(biāo)準(zhǔn)格式
SpaceLocation = TakePicDateTime.IndexOf(" ");
pdt = TakePicDateTime.Substring(0, SpaceLocation);
pdt = pdt.Replace(":", "-");
ptm = TakePicDateTime.Substring(SpaceLocation + 1, TakePicDateTime.Length - SpaceLocation - 2);
TakePicDateTime = pdt + " " + ptm;
//由列表中的文件創(chuàng)建內(nèi)存位圖對象
Pic = new Bitmap(listBox1.Items[i].ToString());
//由位圖對象創(chuàng)建Graphics對象的實例
g = Graphics.FromImage(Pic);
//繪制數(shù)碼照片的日期/時間
g.DrawString(TakePicDateTime, normalContentFont, new SolidBrush(normalContentColor),
Pic.Width - 700, Pic.Height - 200);
//將添加日期/時間戳后的圖像進行保存
if (txtSavePath.Text.Length == 3)
{
Pic.Save(txtSavePath.Text + Path.GetFileName(listBox1.Items[i].ToString()));
}
else
{
Pic.Save(txtSavePath.Text + "\\" + Path.GetFileName(listBox1.Items[i].ToString()));
}
//釋放內(nèi)存位圖對象
Pic.Dispose();
toolStripProgressBar1.Value = kk;
if (kk == listBox1.Items.Count)
{
toolStripStatusLabel1.Text = "全部數(shù)碼相片拍攝日期添加成功";
toolStripProgressBar1.Visible = false;
flag = null;
listBox1.Items.Clear();
}
kk++;
}
}
#region 獲取數(shù)碼相片的拍攝日期
//獲取圖像文件的所有元數(shù)據(jù)屬性,保存倒PropertyItem數(shù)組
public static PropertyItem[] GetExif(string fileName)
{
FileStream Mystream = new FileStream(fileName, FileMode.Open, FileAccess.Read);
//通過指定的數(shù)據(jù)流來創(chuàng)建Image
Image image = Image.FromStream(Mystream, true, false);
return image.PropertyItems;
}
//遍歷所有元數(shù)據(jù),獲取拍照日期/時間
private string GetDateTime(System.Drawing.Imaging.PropertyItem[] parr)
{
Encoding ascii = Encoding.ASCII;
//遍歷圖像文件元數(shù)據(jù),檢索所有屬性
foreach (PropertyItem pp in parr)
{
//如果是PropertyTagDateTime,則返回該屬性所對應(yīng)的值
if (pp.Id == 0x0132)
{
return ascii.GetString(pp.Value);
}
}
//若沒有相關(guān)的EXIF信息則返回N/A
return "N/A";
}
#endregion
private void Form1_Load(object sender, EventArgs e)
{
CheckForIllegalCrossThreadCalls = false;
}
private void Form1_FormClosed(object sender, FormClosedEventArgs e)
{
if (td != null)
{
td.Abort();
}
}
}
到此這篇關(guān)于C#實現(xiàn)給圖片添加日期信息的示例詳解的文章就介紹到這了,更多相關(guān)C#圖片添加日期信息內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
c#使用linq把多列的List轉(zhuǎn)化為只有指定列的List
這篇文章主要介紹了c#使用linq把多列的List轉(zhuǎn)化為只有指定列的List,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2019-12-12
C# 將透明圖片的非透明區(qū)域轉(zhuǎn)換成Region的實例代碼
以下代碼實現(xiàn)將一張帶透明度的png圖片的非透明部分轉(zhuǎn)換成Region輸出的方法,有需要的朋友可以參考一下2013-10-10
C#多線程學(xué)習(xí)之(四)使用線程池進行多線程的自動管理
這篇文章主要介紹了C#多線程學(xué)習(xí)之使用線程池進行多線程的自動管理,實例分析了C#中線程池的概念與相關(guān)的使用技巧,非常具有實用價值,需要的朋友可以參考下2015-04-04

