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

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發(fā)文檔 其他文檔  
 
網(wǎng)站管理員

利用asp.net獲取指定目錄下的所有圖片,并壓縮到指定大小

admin
2025年1月1日 17:51 本文熱度 152

以下是在 ASP.NET(aspx)中獲取指定目錄下的所有圖片并壓縮到指定大小的示例代碼:

一、使用 System.Drawing 和 System.IO 命名空間實現(xiàn)

1. 在頁面的后臺代碼中添加以下方法:

using System.Drawing;
using System.Drawing.Imaging;
using System.IO;

public void CompressImagesInDirectory(string sourceDirectory, string destinationDirectory, int maxWidth, int maxHeight)
{
    if (!Directory.Exists(destinationDirectory))
    {
        Directory.CreateDirectory(destinationDirectory);
    }

    string[] imageFiles = Directory.GetFiles(sourceDirectory, "*.jpg");
    string[] pngImageFiles = Directory.GetFiles(sourceDirectory, "*.png");
    string[] allImageFiles = imageFiles.Concat(pngImageFiles).ToArray();

    foreach (string imagePath in allImageFiles)
    {
        using (Image image = Image.FromFile(imagePath))
        {
            int newWidth = image.Width;
            int newHeight = image.Height;

            if (image.Width > maxWidth || image.Height > maxHeight)
            {
                double ratioX = (double)maxWidth / image.Width;
                double ratioY = (double)maxHeight / image.Height;
                double ratio = Math.Min(ratioX, ratioY);

                newWidth = (int)(image.Width * ratio);
                newHeight = (int)(image.Height * ratio);
            }

            using (Bitmap resizedImage = new Bitmap(newWidth, newHeight))
            {
                using (Graphics graphics = Graphics.FromImage(resizedImage))
                {
                    graphics.DrawImage(image, 0, 0, newWidth, newHeight);
                }

                string fileName = Path.GetFileName(imagePath);
                string destinationPath = Path.Combine(destinationDirectory, fileName);

                ImageFormat format = GetImageFormat(imagePath);
                resizedImage.Save(destinationPath, format);
            }
        }
    }
}

private ImageFormat GetImageFormat(string imagePath)
{
    string extension = Path.GetExtension(imagePath).ToLower();
    if (extension == ".jpg" || extension == ".jpeg")
    {
        return ImageFormat.Jpeg;
    }
    else if (extension == ".png")
    {
        return ImageFormat.Png;
    }
    else
    {
        return ImageFormat.Jpeg;
    }
}

2. 然后在按鈕的點擊事件或其他觸發(fā)事件中調(diào)用這個方法:

protected void CompressButton_Click(object sender, EventArgs e)
{
    string sourceDirectory = @"C:\YourSourceDirectory"; // 指定源目錄
    string destinationDirectory = @"C:\YourDestinationDirectory"; // 指定目標(biāo)目錄
    int maxWidth = 800; // 設(shè)置最大寬度
    int maxHeight = 600; // 設(shè)置最大高度
    CompressImagesInDirectory(sourceDirectory, destinationDirectory, maxWidth, maxHeight);
}

請確保將源目錄和目標(biāo)目錄替換為實際的路徑,并根據(jù)需要調(diào)整最大寬度和高度。這個方法將遍歷指定目錄中的所有 JPEG 和 PNG 圖像文件,將它們壓縮到指定的最大尺寸,并保存到目標(biāo)目錄中。

以下是在上述代碼中添加設(shè)置壓縮質(zhì)量參數(shù)的方法:

  1. 修改 CompressImagesInDirectory 方法如下:

public void CompressImagesInDirectory(string sourceDirectory, string destinationDirectory, int maxWidth, int maxHeight, int jpegQuality)
{
    if (!Directory.Exists(destinationDirectory))
    {
        Directory.CreateDirectory(destinationDirectory);
    }

    string[] imageFiles = Directory.GetFiles(sourceDirectory, "*.jpg");
    string[] pngImageFiles = Directory.GetFiles(sourceDirectory, "*.png");
    string[] allImageFiles = imageFiles.Concat(pngImageFiles).ToArray();

    foreach (string imagePath in allImageFiles)
    {
        using (Image image = Image.FromFile(imagePath))
        {
            int newWidth = image.Width;
            int newHeight = image.Height;

            if (image.Width > maxWidth || image.Height > maxHeight)
            {
                double ratioX = (double)maxWidth / image.Width;
                double ratioY = (double)maxHeight / image.Height;
                double ratio = Math.Min(ratioX, ratioY);

                newWidth = (int)(image.Width * ratio);
                newHeight = (int)(image.Height * ratio);
            }

            using (Bitmap resizedImage = new Bitmap(newWidth, newHeight))
            {
                using (Graphics graphics = Graphics.FromImage(resizedImage))
                {
                    graphics.DrawImage(image, 0, 0, newWidth, newHeight);
                }

                string fileName = Path.GetFileName(imagePath);
                string destinationPath = Path.Combine(destinationDirectory, fileName);

                ImageFormat format = GetImageFormat(imagePath);

                if (format == ImageFormat.Jpeg)
                {
                    // 使用 JPEG 編碼器并設(shè)置質(zhì)量參數(shù)
                    EncoderParameters encoderParams = new EncoderParameters(1);
                    encoderParams.Param[0] = new EncoderParameter(System.Drawing.Imaging.Encoder.Quality, jpegQuality);
                    resizedImage.Save(destinationPath, GetJpegCodecInfo(), encoderParams);
                }
                else
                {
                    resizedImage.Save(destinationPath, format);
                }
            }
        }
    }
}

private ImageCodecInfo GetJpegCodecInfo()
{
    ImageCodecInfo[] codecs = ImageCodecInfo.GetImageEncoders();
    foreach (ImageCodecInfo codec in codecs)
    {
        if (codec.MimeType == "image/jpeg")
            return codec;
    }
    return null;
}

private ImageFormat GetImageFormat(string imagePath)
{
    string extension = Path.GetExtension(imagePath).ToLower();
    if (extension == ".jpg" || extension == ".jpeg")
    {
        return ImageFormat.Jpeg;
    }
    else if (extension == ".png")
    {
        return ImageFormat.Png;
    }
    else
    {
        return ImageFormat.Jpeg;
    }
}

2. 然后在調(diào)用該方法時傳入壓縮質(zhì)量參數(shù),例如:

protected void CompressButton_Click(object sender, EventArgs e)
{
    string sourceDirectory = @"C:\YourSourceDirectory";
    string destinationDirectory = @"C:\YourDestinationDirectory";
    int maxWidth = 800;
    int maxHeight = 600;
    int jpegQuality = 80; // 設(shè)置 JPEG 壓縮質(zhì)量為 80,可以根據(jù)需要調(diào)整
    CompressImagesInDirectory(sourceDirectory, destinationDirectory, maxWidth, maxHeight, jpegQuality);
}

這樣就可以在壓縮圖像時設(shè)置 JPEG 圖像的壓縮質(zhì)量參數(shù)了。對于 PNG 圖像,目前沒有直接設(shè)置壓縮質(zhì)量的方法,因為 PNG 是無損壓縮格式。


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