溫馨提示×

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

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

.net中使用GDI+提高gif圖片畫質(zhì)代碼

發(fā)布時(shí)間:2020-07-05 18:42:10 來(lái)源:網(wǎng)絡(luò) 閱讀:662 作者:OH51888 欄目:編程語(yǔ)言

    在.net中使用GDI+來(lái)提高gif圖片的保存畫質(zhì),這就是“Octree“ 算法?!癘ctree“ 算法允許我們插入自己的算法來(lái)量子化我們的圖像。

    使用octreequantizer很方便:

隱藏行號(hào) 復(fù)制代碼 ? 代碼
  1.  system.drawing.bitmap b = new System.Drawing.Bitmap("c:\original_image.gif");  
    
  2. System.Drawing.Image thmbnail = b.GetThumbnailImage(100,75,null,new IntPtr()); 
    
  3. OctreeQuantizer quantizer = new OctreeQuantizer ( 255 , 8 ) ; 
    
  4. using ( Bitmap quantized = quantizer.Quantize ( thmbnail ) ) 
    
  5. { 
    
  6.      quantized.Save("c:\thumnail.gif", System.Drawing.Imaging.ImageFormat.Gif); 
    
  7. } 
    
  8. octreequantizer grayquantizer = new GrayscaleQuantizer ( ) ; 
    
  9. using ( Bitmap quantized = grayquantizer.Quantize ( thmbnail ) ) 
    
  10. { 
    
  11.      quantized.Save("c:\thumnail.gif", System.Drawing.Imaging.ImageFormat.Gif); 
    
  12. } 
    
向AI問一下細(xì)節(jié)

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

AI