C# 圖片Base64 編碼,圖片格式轉換

一. Base64的編碼規則html

 

Base64編碼的思想是是採用64個基本的ASCII碼字符對數據進行從新編碼。它將須要編碼的數據拆分紅字節數組。以3個字節爲一組。按順序排列24 位數據,再把這24位數據分紅4組,即每組6位。再在每組的的最高位前補兩個0湊足一個字節。這樣就把一個3字節爲一組的數據從新編碼成了4個字節。當所要編碼的數據的字節數不是3的整倍數,也就是說在分組時最後一組不夠3個字節。這時在最後一組填充1到2個0字節。並在最後編碼完成後在結尾添加1到2個 「=」。數組

例:將對ABC進行BASE64編碼:app


一、首先取ABC對應的ASCII碼值。A(65)B(66)C(67);
二、再取二進制值A(01000001)B(01000010)C(01000011);
 三、而後把這三個字節的二進制碼接起來(010000010100001001000011);
四、 再以6位爲單位分紅4個數據塊,並在最高位填充兩個0後造成4個字節的編碼後的值,(00010000)(00010100)(00001001)(00000011),其中藍色部分爲真實數據;
 五、再把這四個字節數據轉化成10進制數得(16)(20)(9)(3);
 六、最後根據BASE64給出的64個基本字符表,查出對應的ASCII碼字符(Q)(U)(J)(D),這裏的值實際就是數據在字符表中的索引。編碼

注:BASE64字符表:ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/spa

二.解碼規則.net

解碼過程就是把4個字節再還原成3個字節再根據不一樣的數據形式把字節數組從新整理成數據。orm

 

三. C#中的實現htm

 編碼:blog

 

byte[] bytes = Encoding.Default.GetBytes("要轉換的字符");
string str = Convert.ToBase64String(bytes);索引

 

解碼:

 

byte[] outputb = Convert.FromBase64String(str);
string orgStr = Encoding.Default.GetString(outputb);

 

C#圖片的Base64編碼和解碼 

圖片的Base64編碼:

 

System.IO.MemoryStream m = new System.IO.MemoryStream();
System.Drawing.Bitmap bp = new System.Drawing.Bitmap(@「c:\demo.GIF」);
bp.Save(m, System.Drawing.Imaging.ImageFormat.Gif);
byte[]b= m.GetBuffer();
string base64string=Convert.ToBase64String(b);

 

Base64字符串解碼:

 

byte[] bt = Convert.FromBase64String(base64string);
System.IO.MemoryStream stream = new System.IO.MemoryStream(bt);
Bitmap bitmap = new Bitmap(stream);
pictureBox1.Image = bitmap;

 

 

http://www.weste.net/html/200408/20040803QBI163429.html

把bmp圖片轉換爲jpg圖片(C#)

 

 

[csharp] view plain copy

  1. using System.IO;  
  2. using System.Drawing.Imaging;  
  3.    
  4. public class imgConvert  
  5. {  
  6.     private void BMPToJPG(string bmpFileName,string jpgFileName)  
  7.     {  
  8.            
  9.        System.Drawing.Image img;  
  10.        img=ReturnPhoto(bmpFileName);  
  11.      
  12.        img.Save(jpgFileName,ImageFormat.Jpeg);  
  13.     }  
  14.    
  15.     private Image ReturnPhoto(string bmpFileName)  
  16.     {  
  17.        System.IO.FileStream stream ;  
  18.        stream=File.OpenRead(bmpFileName);  
  19.        Bitmap bmp = new Bitmap(stream);  
  20.        System.Drawing.Image image = bmp;//獲得原圖  
  21.        //建立指定大小的圖  
  22.        System.Drawing.Image newImage = image.GetThumbnailImage(bmp.Width, bmp.Height,null, new IntPtr());  
  23.        Graphics g=Graphics.FromImage(newImage);  
  24.        g.DrawImage(newImage,0,0, newImage.Width, newImage.Height); //將原圖畫到指定的圖上  
  25.        g.Dispose();  
  26.        stream.Close();  
  27.        return newImage;  
  28.     }  
  29. }  


 

 

 

http://www.csframework.com/archive/2/arc-2-20110617-1635.htm

 PNG ->JPG, BMP -> PNG按比例縮小圖片

 

 

[csharp] view plain copy

  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Text;  
  4. using System.IO;  
  5. using System.Drawing;  
  6. using System.Drawing.Imaging;  
  7.   
  8. namespace www.CSFramework.com  
  9. {  
  10.    public class CImageLibrary  
  11.    {  
  12.       public enum ValidateImageResult { OK, InvalidFileSize, InvalidImageSize }  
  13.         
  14.       //檢查圖片大小   
  15.       public static ValidateImageResult ValidateImage(string file, int MAX_FILE_SIZE, int MAX_WIDTH, int MAX_HEIGHT)  
  16.       {  
  17.          byte[] bs = File.ReadAllBytes(file);  
  18.            
  19.          double size = (bs.Length / 1024);  
  20.          //大於50KB   
  21.          if (size > MAX_FILE_SIZE) return ValidateImageResult.InvalidFileSize;  
  22.          Image img = Image.FromFile(file);  
  23.          if (img.Width > MAX_WIDTH || img.Height > MAX_HEIGHT) return ValidateImageResult.InvalidImageSize;  
  24.          return ValidateImageResult.OK;  
  25.       }  
  26.         
  27.       //按寬度比例縮小圖片   
  28.       public static Image GetOutputSizeImage(Image imgSource, int MAX_WIDTH)  
  29.       {  
  30.          Image imgOutput = imgSource;  
  31.            
  32.          Size size = new Size(imgSource.Width, imgSource.Height);  
  33.          if (imgSource.Width <= 3 || imgSource.Height <= 3) return imgSource; //3X3大小的圖片不轉換   
  34.            
  35.          if (imgSource.Width > MAX_WIDTH || imgSource.Height > MAX_WIDTH)  
  36.          {  
  37.             double rate = MAX_WIDTH / (double)imgSource.Width;  
  38.               
  39.             if (imgSource.Height * rate > MAX_WIDTH)  
  40.             rate = MAX_WIDTH / (double)imgSource.Height;  
  41.               
  42.             size.Width = Convert.ToInt32(imgSource.Width * rate);  
  43.             size.Height = Convert.ToInt32(imgSource.Height * rate);  
  44.               
  45.             imgOutput = imgSource.GetThumbnailImage(size.Width, size.Height, null, IntPtr.Zero);  
  46.          }  
  47.            
  48.          return imgOutput;  
  49.       }  
  50.         
  51.       //按比例縮小圖片   
  52.       public static Image GetOutputSizeImage(Image imgSource, Size outSize)  
  53.       {  
  54.          Image imgOutput = imgSource.GetThumbnailImage(outSize.Width, outSize.Height, null, IntPtr.Zero);  
  55.          return imgOutput;  
  56.       }  
  57.         
  58.       /// <summary>   
  59.       /// 由圖片文件轉字節   
  60.       /// </summary>   
  61.       public static byte[] GetImageBytes(string imageFileName)  
  62.       {  
  63.          Image img = Image.FromFile(imageFileName);  
  64.          return GetImageBytes(img);  
  65.       }  
  66.         
  67.       /// <summary>   
  68.       /// 圖片轉字節   
  69.       /// </summary>   
  70.       public static byte[] GetImageBytes(Image img)  
  71.       {  
  72.          if (img == null) return null;  
  73.          try  
  74.          {  
  75.             System.IO.MemoryStream ms = new MemoryStream();  
  76.             img.Save(ms, ImageFormat.Jpeg);  
  77.             byte[] bs = ms.ToArray();  
  78.             ms.Close();  
  79.             return bs;  
  80.          }  
  81.          catch { return null; }  
  82.       }  
  83.         
  84.       /// <summary>   
  85.       /// 字節轉圖片   
  86.       /// </summary>   
  87.       public static Image FromBytes(byte[] bs)  
  88.       {  
  89.          if (bs == null) return null;  
  90.          try  
  91.          {  
  92.             MemoryStream ms = new MemoryStream(bs);  
  93.             Image returnImage = Image.FromStream(ms);  
  94.             ms.Close();  
  95.             return returnImage;  
  96.          }  
  97.          catch { return null; }  
  98.       }  
  99.         
  100.       /// <summary>   
  101.       /// 將其它格式的圖片轉爲JPG文件   
  102.       /// </summary>   
  103.       public static Image ToJPG(Image source)  
  104.       {  
  105.          //注意,先定義Bitmap類,不然會報A generic error occurred in GDI+   
  106.          Bitmap bmp = new Bitmap(source);  
  107.          MemoryStream ms = new MemoryStream();  
  108.          bmp.Save(ms, ImageFormat.Jpeg);  
  109.          return Bitmap.FromStream(ms);  
  110.       }  
  111.         
  112.       /// <summary>   
  113.       /// 將其它格式的圖片轉爲PNG文件   
  114.       /// </summary>   
  115.       public static Image ToPNG(Image source)  
  116.       {  
  117.          //注意,先定義Bitmap類,不然會報A generic error occurred in GDI+   
  118.          Bitmap bmp = new Bitmap(source);  
  119.          MemoryStream ms = new MemoryStream();  
  120.          bmp.Save(ms, ImageFormat.Png);  
  121.          return FromBytes(ms.ToArray());  
  122.       }  
  123.         
  124.       //保存文件   
  125.       public static void SaveFile(string fileName, Image source)  
  126.       {  
  127.          source.Save(fileName, source.RawFormat);  
  128.       }  
  129.         
  130.    }  
  131. }  

相關文章
相關標籤/搜索