国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發(fā) > 綜合 > 正文

c#生成縮略圖

2024-07-21 02:26:54
字體:
來源:轉載
供稿:網(wǎng)友
private void showthumbnail(string oldfile, string newfile, int h, int w)
  {
   
   system.drawing.image img = system.drawing.image.fromfile(oldfile);
   system.drawing.image.getthumbnailimageabort mycallback = new system.drawing.image.getthumbnailimageabort(thumbnailcallback);

   int oldh = img.height;
   int oldw = img.width;

   int newh,neww;

   double h1 = oldh*1.0/h;
   double w1 = oldw*1.0/w;

   double f = (h1>w1)? h1:w1;

   if(f < 1.0)
   {
    newh = oldh;
    neww = oldw;
   }
   else
   {
    newh = (int)(oldh/f);
    neww = (int)(oldw/f);
   }

   system.drawing.image mythumbnail = img.getthumbnailimage(neww, newh, mycallback, intptr.zero);

   mythumbnail.save(newfile, system.drawing.imaging.imageformat.jpeg);

   img.dispose();
   mythumbnail.dispose();
  }
  private bool thumbnailcallback()
  {
   return false;
  }

,歡迎訪問網(wǎng)頁設計愛好者web開發(fā)。
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 崇信县| 焦作市| 辉县市| 南部县| 天门市| 濉溪县| 固阳县| 习水县| 达日县| 盘锦市| 高青县| 大冶市| 会宁县| 漳平市| 鄢陵县| 夏津县| 龙胜| 永顺县| 玉山县| 安达市| 昭觉县| 陈巴尔虎旗| 齐河县| 乌拉特后旗| 石城县| 德江县| 宣汉县| 拉孜县| 彭阳县| 深水埗区| 盐山县| 澄江县| 丹巴县| 徐汇区| 思茅市| 通州区| 晋城| 讷河市| 曲周县| 海城市| 枞阳县|