欧美成人精品手机在线观看_69视频国产_动漫精品第一页_日韩中文字幕网 - 日本欧美一区二区

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發文檔 其他文檔  
 
網站管理員

C# 圖片處理源代碼 - 縮略圖

admin
2024年8月27日 12:58 本文熱度 983

摘要


在圖像處理中,生成縮略圖是一項常見的任務。縮略圖是原始圖像的小尺寸版本,通常用于在網頁、移動應用程序等場景中顯示圖像的預覽或縮略圖。本文將介紹如何使用C#來實現生成縮略圖的功能,并介紹常用的屬性和方法。

正文


使用System.Drawing命名空間

在C#中,我們可以使用System.Drawing命名空間中的類來進行圖像處理。這個命名空間提供了許多用于處理圖像的類和方法,包括生成縮略圖的功能。

首先,我們需要在項目中引用System.Drawing命名空間。在Visual Studio中,右鍵點擊項目,選擇“添加” -> “引用”,然后在“程序集”中找到并選中System.Drawing,點擊“確定”按鈕以添加引用。

加載圖像

在生成縮略圖之前,我們需要加載原始圖像。可以使用Image類的FromFile方法來從文件中加載圖像,或者使用FromStream方法從流中加載圖像。

// 從文件加載圖像

Image originalImage = Image.FromFile("D:\\BaiduSyncdisk\\11Test\\promo.png");


// 從流加載圖像

using (FileStream stream = new FileStream("path/to/image.jpg", FileMode.Open))

{

    Image newImage = Image.FromStream(stream);

}

生成縮略圖

一旦我們加載了原始圖像,就可以使用Image.GetThumbnailImage方法來生成縮略圖。這個方法接受縮略圖的寬度和高度作為參數,并返回一個新的Image對象,表示生成的縮略圖。

int thumbnailWidth = 200;

int thumbnailHeight = 200;

Image thumbnailImage = originalImage.GetThumbnailImage(thumbnailWidth, thumbnailHeight, null, IntPtr.Zero);

保存縮略圖

生成縮略圖后,我們可以將其保存到文件或流中。可以使用Image.Save方法來保存圖像。

static void Main()

{

    // 從文件加載圖像

    Image originalImage = Image.FromFile("D:\\BaiduSyncdisk\\11Test\\promo.png");

    

    int thumbnailWidth = 200;

    int thumbnailHeight = 200;

    

    Image thumbnailImage = originalImage.GetThumbnailImage

    (thumbnailWidth, thumbnailHeight, null, IntPtr.Zero);

    

    //保存圖

    thumbnailImage.Save("D:\\BaiduSyncdisk\\11Test\\promo1.png");

}

按比例微縮

public class ThumbnailGenerator

{

  public void GenerateThumbnail(string imagePath, string thumbnailPath, int thumbnailWidth, int thumbnailHeight, bool preserveAspectRatio = true)

  {

    using (Image originalImage = Image.FromFile(imagePath))

    {

      int width;

      int height;

      

      if (preserveAspectRatio)

      {

        // 計算縮放比例

        float widthRatio = (float)thumbnailWidth / originalImage.Width;

        float heightRatio = (float)thumbnailHeight / originalImage.Height;

        float ratio = Math.Min(widthRatio, heightRatio);

        

        // 計算縮略圖的實際寬度和高度

        width = (int)(originalImage.Width * ratio);

        height = (int)(originalImage.Height * ratio);

      }

      else

      {

        width = thumbnailWidth;

        height = thumbnailHeight;

      }

      

      // 生成縮略圖

      using (Image thumbnailImage = originalImage.GetThumbnailImage(width, height, null, IntPtr.Zero))

      {

        thumbnailImage.Save(thumbnailPath, ImageFormat.Jpeg);//Png 透明

      }

    }

  }

}


ThumbnailGenerator thumbnailGenerator = new ThumbnailGenerator();

thumbnailGenerator.GenerateThumbnail("D:\\BaiduSyncdisk\\11Test\\promo.png", "D:\\BaiduSyncdisk\\11Test\\promo3.png", 200, 200);

pictureBox2.Image = Image.FromFile("D:\\BaiduSyncdisk\\11Test\\promo3.png");

這個通用的ThumbnailGenerator類具有以下特點:

  • 可以指定要生成縮略圖的圖像路徑、縮略圖保存路徑、縮略圖的寬度和高度。

  • 可以選擇保持原始圖像的縱橫比或不保持縱橫比。

  • 使用preserveAspectRatio參數來控制是否保持縱橫比,默認為true

  • 生成的縮略圖保存為JPEG格式。

總結

通過使用System.Drawing命名空間中的類和方法,我們可以方便地實現圖像縮略圖的生成。關鍵步驟包括加載圖像、調用GetThumbnailImage方法生成縮略圖,并使用Save方法保存縮略圖到文件或流中。


該文章在 2024/8/27 15:21:20 編輯過
關鍵字查詢
相關文章
正在查詢...
點晴ERP是一款針對中小制造業的專業生產管理軟件系統,系統成熟度和易用性得到了國內大量中小企業的青睞。
點晴PMS碼頭管理系統主要針對港口碼頭集裝箱與散貨日常運作、調度、堆場、車隊、財務費用、相關報表等業務管理,結合碼頭的業務特點,圍繞調度、堆場作業而開發的。集技術的先進性、管理的有效性于一體,是物流碼頭及其他港口類企業的高效ERP管理信息系統。
點晴WMS倉儲管理系統提供了貨物產品管理,銷售管理,采購管理,倉儲管理,倉庫管理,保質期管理,貨位管理,庫位管理,生產管理,WMS管理系統,標簽打印,條形碼,二維碼管理,批號管理軟件。
點晴免費OA是一款軟件和通用服務都免費,不限功能、不限時間、不限用戶的免費OA協同辦公管理系統。
Copyright 2010-2025 ClickSun All Rights Reserved