溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

C#實現(xiàn)圖片格式轉(zhuǎn)換的方法

發(fā)布時間:2020-08-04 09:09:44 來源:億速云 閱讀:258 作者:小豬 欄目:開發(fā)技術(shù)

這篇文章主要講解了C#實現(xiàn)圖片格式轉(zhuǎn)換的方法,內(nèi)容清晰明了,對此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會有幫助。

在日常工作中,經(jīng)常需要不同格式的圖片,有時還需要進行圖片格式的相互轉(zhuǎn)換,本文以一個簡單的小例子,簡述圖片格式轉(zhuǎn)換的常見方法,僅供學(xué)習(xí)分享使用,如有不足之處,還請指正。

涉及知識點

  • OpenFileDialog 打開文件對話框,用于選擇文件,可以設(shè)置過濾后綴。
  • FolderBrowserDialog 文件夾選擇對話框,用于選擇一個文件夾,可以新增。
  • ImageFormat 圖片類型枚舉。
  • Bitmap 位圖對象,包含對應(yīng)的屬性和內(nèi)容。
  • Stream 流對象的基類。
  • FlowLayoutPanel 流式布局容器,所添加的元素,以橫向或縱向依次排列。

示例效果圖

圖片轉(zhuǎn)換器的示例效果圖如下:

C#實現(xiàn)圖片格式轉(zhuǎn)換的方法

核心代碼

打開圖片

/// <summary>
    /// 打開圖片
    /// </summary>
    /// <param name="sender"></param>
    /// <param name="e"></param>
    private void btnOpen_Click(object sender, EventArgs e)
    {

      this.fileDialog.Filter = fileFilter;
      this.fileDialog.Multiselect = true;
      this.fileDialog.CheckFileExists = true;
      if (fileDialog.ShowDialog() == DialogResult.OK)
      {
        string[] fileNames = this.fileDialog.FileNames;
        foreach(string fileName in fileNames)
        {
          Bitmap bmp = new Bitmap(fileName);
          //保存圖片名稱
          bmp.Tag = Path.GetFileNameWithoutExtension(fileName);
          PictureBox box = new PictureBox();
          box.Image = bmp;
          box.Width = 105;
          box.Height = 150;
          box.BorderStyle = BorderStyle.FixedSingle;
          box.Padding = new Padding(2);
          this.flowPnl.Controls.Add(box);
        }
        this.txtFile.Text = Path.GetDirectoryName(fileNames[0]);

      }
    }

轉(zhuǎn)換圖片格式

/// <summary>
    /// 轉(zhuǎn)換圖片
    /// </summary>
    private void convertImage(string dir, string filter,Bitmap bmp)
    {
      string filePath = Path.Combine(dir, string.Format("{0}.{1}", bmp.Tag.ToString(), filter.ToLower()));
      switch (filter)
      {
        case "JPG":
          bmp.Save(filePath, ImageFormat.Jpeg);
          break;
        case "PNG":
          bmp.Save(filePath, ImageFormat.Png);
          break;
        case "GIF":
          bmp.Save(filePath, ImageFormat.Gif);
          break;
        case "BMP":
          bmp.Save(filePath, ImageFormat.Bmp);
          break;
        case "ICO":
          Stream stream = File.Create(filePath);
          Icon icon = Icon.FromHandle(bmp.GetHicon());
          icon.Save(stream);    //  save the icon
          stream.Close();
          break;
      }
    }

看完上述內(nèi)容,是不是對C#實現(xiàn)圖片格式轉(zhuǎn)換的方法有進一步的了解,如果還想學(xué)習(xí)更多內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI