午夜国产狂喷潮在线观看|国产AⅤ精品一区二区久久|中文字幕AV中文字幕|国产看片高清在线

    asp.net 生成縮略圖的實例源代碼
    來源:易賢網(wǎng) 閱讀:575 次 日期:2014-10-24 15:32:12
    溫馨提示:易賢網(wǎng)小編為您整理了“asp.net 生成縮略圖的實例源代碼”,方便廣大網(wǎng)友查閱!

    using system;

    using system.data;

    using system.configuration;

    using system.web;

    using system.web.security;

    using system.web.ui;

    using system.web.ui.webcontrols;

    using system.web.ui.webcontrols.webparts;

    using system.web.ui.htmlcontrols;

    using system.io;

    using system.drawing;

    using system.drawing.imaging;

    ///

    /// 圖片處理類

    /// 1、生成縮略圖片或按照比例改變圖片的大小和畫質(zhì)

    /// 2、將生成的縮略圖放到指定的目錄下

    ///

    public class imageclass

    {

    public system.drawing.image resourceimage;

    private int imagewidth;

    private int imageheight;

    public string errmessage;

    ///

    /// 類的構(gòu)造函數(shù)

    ///

    /// 圖片文件的全路徑名稱

    public imageclass(string imagefilename)

    {

    resourceimage = system.drawing.image.fromfile(imagefilename);

    errmessage = ;

    }

    public bool thumbnailcallback()

    {

    return false;

    }

    ///

    /// 生成縮略圖重載方法1,返回縮略圖的image對象

    ///

    /// 縮略圖的寬度

    /// 縮略圖的高度

    /// 縮略圖的image對象

    public system.drawing.image getreducedimage(int width, int height)

    {

    try

    {

    system.drawing.image reducedimage;

    system.drawing.image.getthumbnailimageabort callb = new system.drawing.image.getthumbnailimageabort(thumbnailcallback);

    reducedimage = resourceimage.getthumbnailimage(width, height, callb, intptr.zero);

    return reducedimage;

    }

    catch (exception e)

    {

    errmessage = e.message;

    return null;

    }

    }

    ///

    /// 生成縮略圖重載方法2,將縮略圖文件保存到指定的路徑

    ///

    /// 縮略圖的寬度

    /// 縮略圖的高度

    /// 縮略圖保存的全文件名,(帶路徑),參數(shù)格式:d:images ilename.jpg

    /// 成功返回true,否則返回false

    public bool getreducedimage(int width, int height, string targetfilepath)

    {

    try

    {

    system.drawing.image reducedimage;

    system.drawing.image.getthumbnailimageabort callb = new system.drawing.image.getthumbnailimageabort(thumbnailcallback);

    reducedimage = resourceimage.getthumbnailimage(width, height, callb, intptr.zero);

    reducedimage.save(@targetfilepath, imageformat.jpeg);

    reducedimage.dispose();

    return true;

    }

    catch (exception e)

    {

    errmessage = e.message;

    return false;

    }

    }

    ///

    /// 生成縮略圖重載方法3,返回縮略圖的image對象

    ///

    /// 縮略圖的寬度百分比 如:需要百分之80,就填0.8

    /// 縮略圖的image對象

    public system.drawing.image getreducedimage(double percent)

    {

    try

    {

    system.drawing.image reducedimage;

    system.drawing.image.getthumbnailimageabort callb = new system.drawing.image.getthumbnailimageabort(thumbnailcallback);

    imagewidth = convert.toint32(resourceimage.width * percent);

    imageheight = convert.toint32(resourceimage.width * percent);

    reducedimage = resourceimage.getthumbnailimage(imagewidth, imageheight, callb, intptr.zero);

    return reducedimage;

    }

    catch (exception e)

    {

    errmessage = e.message;

    return null;

    }

    }

    ///

    /// 生成縮略圖重載方法4,返回縮略圖的image對象

    ///

    /// 縮略圖的寬度百分比 如:需要百分之80,就填0.8

    /// 縮略圖保存的全文件名,(帶路徑),參數(shù)格式:d:images ilename.jpg

    /// 成功返回true,否則返回false

    public bool getreducedimage(double percent, string targetfilepath)

    {

    try

    {

    system.drawing.image reducedimage;

    system.drawing.image.getthumbnailimageabort callb = new system.drawing.image.getthumbnailimageabort(thumbnailcallback);

    imagewidth = convert.toint32(resourceimage.width * percent);

    imageheight = convert.toint32(resourceimage.width * percent);

    reducedimage = resourceimage.getthumbnailimage(imagewidth, imageheight, callb, intptr.zero);

    reducedimage.save(@targetfilepath, imageformat.jpeg);

    reducedimage.dispose();

    return true;

    }

    catch (exception e)

    {

    errmessage = e.message;

    return false;

    }

    }

    }

    更多信息請查看IT技術(shù)專欄

    更多信息請查看網(wǎng)絡編程
    易賢網(wǎng)手機網(wǎng)站地址:asp.net 生成縮略圖的實例源代碼

    2025國考·省考課程試聽報名

    • 報班類型
    • 姓名
    • 手機號
    • 驗證碼
    關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
    工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
    聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
    咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)