Windows Phone 解析圖片尺寸之gif

來源:互聯網
上載者:User

  前面介紹了PNG和JPG圖片的尺寸解析,Windows Phone是直接支援這兩種圖片的顯示的,使用Image控制項。而GIF圖片需要用第三方開發的控制項來顯示,ImageTools是開源社區CodePlex提供的,可以通過http://imagetools.codeplex.com/下載DLL以及源碼。
  引用ImageTools類庫後,通過以下代碼可以顯示GIF圖片。

View Code

        //建立gif控制項
AnimatedImage gifImage = new AnimatedImage();
Decoders.AddDecoder<GifDecoder>();
//根據圖片位元組流載入圖片
ExtendedImage extendedImg = new ExtendedImage();
GifDecoder dc = new GifDecoder();
dc.Decode(extendedImg, stream);
gifImage.Source = extendedImg;

  GIF圖片的檔案格式相對比較簡單,其中寬度和高度資訊存放在邏輯視屏描述塊的前4個位元組,而邏輯視屏描述塊是GIF圖片的第二塊地區,第一個地區為6個位元組的頭部,頭部包括標識符和版本。下表列出到高度資訊為止的各個位元組的描述。

名稱 位元組 說明
頭部    
標識符 3 GIF  47 49 46
版本 3 87a(89a) 38 39|37 61
邏輯視屏描述塊    
寬度 2  
高度 2  

  根據上面的格式很容易擷取圖片的高度和寬度資訊,具體代碼如下。

View Code

        //gif圖片資訊域(47 49 46 38 39|37 61) GIF89(7)a,共6位元組
//根據6位元組判斷是否為gif圖片
byte[] header = new byte[6];
stream.Read(header, 0, 6);
if (!(header[0] == 0x47 && // G
header[1] == 0x49 && // I
header[2] == 0x46 && // F
header[3] == 0x38 && // 8
(header[4] == 0x39 || // 9
header[4] == 0x37) && // 7
header[5] == 0x61)) // a
{
//不是GIF圖片,退出
return;
}

//讀取寬度,高度 各2位元組
byte[] buffer = new byte[4];
stream.Read(buffer, 0, buffer.Length);

width_ = BitConverter.ToInt16(buffer, 0);
height_ = BitConverter.ToInt16(buffer, 2);

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.