Windows 8應用例項解析 - WinRT下建立GIF動畫(Flipflop)

weixin_34219944發表於2013-03-06

 

在Windows Store中下載了一個有意思的應用,叫做Flipflop(http://apps.microsoft.com/windows/app/flipflop/99c01512-fe4f-4d1a-872e-eb9fd6638ff4),該應用允許使用者建立翻頁式動畫效果(Flipbook Animation), 並且可以匯出動畫為GIF檔案。在MSDN看到一篇介紹該專案的技術文章,分享給大家。

Flipflop專案中,作者使用Windows Imaging Component(WIC)實現建立圖片(MSDN檢視Windows 8 WIC新特性),

在專案中引用Windows.Graphics名稱空間,在該空間中包含BitmapEncoder類(MSDN),通過該類可以建立特定的圖片編碼,例如GifEncoder。

通過程式碼檢視工具,可以看到作者建立一個共享類"GifMaker"實現動畫幀的定義,

 

  1. using System; 
  2. using System.Collections.Generic; 
  3. using System.Runtime.InteropServices.WindowsRuntime; 
  4. using Windows.Foundation; 
  5. using Windows.Graphics.Imaging; 
  6. using Windows.Storage; 
  7.  
  8. namespace Utilities 
  9.     public sealed class GifMaker 
  10.     { 
  11.         readonly List<byte[]> frames = new List<byte[]>(); 
  12.         private readonly uint frameWidth; 
  13.         private readonly uint frameHeight; 
  14.  
  15.         public GifMaker(uint width, uint height) 
  16.         { 
  17.             frameWidth = width; 
  18.             frameHeight = height; 
  19.         } 
  20.  
  21.         public void AppendNewFrame([ReadOnlyArray]byte[] frame) 
  22.         { 
  23.             frames.Add(frame); 
  24.         } 

實現翻頁式動畫效果的關鍵是將多個單幀圖片連線在一起,然後通過延時設定播放各個幀實現動畫效果。

BitmapEncoder類(MSDN)中,GoToNextFrameAsync()方法可實現在當前幀的基礎上非同步動態新增新的空白幀,而通過程式碼實現瀏覽各個單一圖片,動態放入不同的空白幀中實現翻頁動畫效果。

 

  1. public IAsyncInfo GenerateAsync(StorageFile file) 
  2.     return AsyncInfo.Run(async ctx => 
  3.         { 
  4.             var outStream = await file.OpenAsync(FileAccessMode.ReadWrite); 
  5.  
  6.             var encoder = await BitmapEncoder.CreateAsync(BitmapEncoder.GifEncoderId, outStream); 
  7.  
  8.             for (int i = 0; i < frames.Count; i++) 
  9.             { 
  10.                 var pixels = frames[i]; 
  11.                 encoder.SetPixelData(BitmapPixelFormat.Rgba8, BitmapAlphaMode.Ignore, 
  12.                                      frameWidth, frameHeight, 
  13.                                      92.0, 92.0, 
  14.                                      pixels); 
  15.  
  16.                 if (i < frames.Count - 1) 
  17.                     await encoder.GoToNextFrameAsync(); 
  18.             } 
  19.  
  20.             await encoder.FlushAsync(); 
  21.             outStream.Dispose(); 
  22.         }); 

最後,需要設定播放幀延遲時間,以達到翻頁動畫效果。控制幀延遲的屬性是encoder.BitmapProperties“/grctlext/Delay”,程式碼如下:

 

  1. public IAsyncInfo GenerateAsync(StorageFile file, int delay) 
  2.     return AsyncInfo.Run(async ctx => 
  3.         { 
  4.             var outStream = await file.OpenAsync(FileAccessMode.ReadWrite); 
  5.  
  6.             var encoder = await BitmapEncoder.CreateAsync(BitmapEncoder.GifEncoderId, outStream); 
  7.  
  8.             for (int i = 0; i < frames.Count; i++) 
  9.             { 
  10.                 var pixels = frames[i]; 
  11.                 encoder.SetPixelData(BitmapPixelFormat.Rgba8, BitmapAlphaMode.Ignore, 
  12.                                      frameWidth, frameHeight, 
  13.                                      92.0, 92.0, 
  14.                                      pixels); 
  15.  
  16.                 if (i == 0) 
  17.                 { 
  18.                     var properties = new BitmapPropertySet 
  19.                         { 
  20.                             { 
  21.                                 "/grctlext/Delay"
  22.                                 new BitmapTypedValue(delay / 10, PropertyType.UInt16) 
  23.                             } 
  24.                         }; 
  25.  
  26.                     await encoder.BitmapProperties.SetPropertiesAsync(properties); 
  27.                 } 
  28.  
  29.                 if (i < frames.Count - 1) 
  30.                     await encoder.GoToNextFrameAsync(); 
  31.             } 
  32.  
  33.             await encoder.FlushAsync(); 
  34.             outStream.Dispose(); 
  35.         }); 

如果你是使用JavaScript作為Windows store應用開發語言,可以使用以下程式碼實現以上相同的效果,

 

  1. var picker = new Windows.Storage.Pickers.FileSavePicker(); 
  2. picker.fileTypeChoices.insert("Gif files", [".gif"]); 
  3.  
  4. picker.pickSaveFileAsync().then(function(file) { 
  5.     if (!file) { 
  6.         return
  7.     } 
  8.     var gifMaker = new Utilities.GifMaker(800, 600); 
  9.  
  10.     for (var commandsIndex = 0; commandsIndex < currentFlipflop.pages.length; commandsIndex++) { 
  11.         // This code is used to retrieve canvases bytes 
  12.         var bytes = Flipflop.Tools.GetBytesfromFlipflop(currentFlipflop.pages[commandsIndex], 
  13.             800, 600); 
  14.  
  15.         gifMaker.appendNewFrame(bytes); 
  16.     } 
  17.  
  18.     gifMaker.generateAsync(file, 200).done(); 
  19. }); 

Flipflop產生GIF動畫效果演示:

 

歡迎大家留言討論學習Windows 8應用開發,希望能夠看到更多優秀的Windows store應用。

歡迎大家加入QQ技術群,一起學習討論Windows 8&Silverlight&WPF&Widnows Phone開發技術。 
22308706(一群) 超級群500人 
37891947(二群) 超級群500人 
100844510(三群) 高階群200人 
32679922(四群) 超級群500人 
23413513(五群) 高階群200人 
32679955(六群) 超級群500人 
88585140(八群) 超級群500人 
128043302(九群 企業應用開發推薦群) 高階群200人 
101364438(十群) 超級群500人

相關文章