Windows 8應用例項解析 - WinRT下建立GIF動畫(Flipflop)
在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"實現動畫幀的定義,
- using System;
- using System.Collections.Generic;
- using System.Runtime.InteropServices.WindowsRuntime;
- using Windows.Foundation;
- using Windows.Graphics.Imaging;
- using Windows.Storage;
- namespace Utilities
- {
- public sealed class GifMaker
- {
- readonly List<byte[]> frames = new List<byte[]>();
- private readonly uint frameWidth;
- private readonly uint frameHeight;
- public GifMaker(uint width, uint height)
- {
- frameWidth = width;
- frameHeight = height;
- }
- public void AppendNewFrame([ReadOnlyArray]byte[] frame)
- {
- frames.Add(frame);
- }
實現翻頁式動畫效果的關鍵是將多個單幀圖片連線在一起,然後通過延時設定播放各個幀實現動畫效果。
在BitmapEncoder類(MSDN)中,GoToNextFrameAsync()方法可實現在當前幀的基礎上非同步動態新增新的空白幀,而通過程式碼實現瀏覽各個單一圖片,動態放入不同的空白幀中實現翻頁動畫效果。
- public IAsyncInfo GenerateAsync(StorageFile file)
- {
- return AsyncInfo.Run(async ctx =>
- {
- var outStream = await file.OpenAsync(FileAccessMode.ReadWrite);
- var encoder = await BitmapEncoder.CreateAsync(BitmapEncoder.GifEncoderId, outStream);
- for (int i = 0; i < frames.Count; i++)
- {
- var pixels = frames[i];
- encoder.SetPixelData(BitmapPixelFormat.Rgba8, BitmapAlphaMode.Ignore,
- frameWidth, frameHeight,
- 92.0, 92.0,
- pixels);
- if (i < frames.Count - 1)
- await encoder.GoToNextFrameAsync();
- }
- await encoder.FlushAsync();
- outStream.Dispose();
- });
- }
最後,需要設定播放幀延遲時間,以達到翻頁動畫效果。控制幀延遲的屬性是encoder.BitmapProperties和“/grctlext/Delay”,程式碼如下:
- public IAsyncInfo GenerateAsync(StorageFile file, int delay)
- {
- return AsyncInfo.Run(async ctx =>
- {
- var outStream = await file.OpenAsync(FileAccessMode.ReadWrite);
- var encoder = await BitmapEncoder.CreateAsync(BitmapEncoder.GifEncoderId, outStream);
- for (int i = 0; i < frames.Count; i++)
- {
- var pixels = frames[i];
- encoder.SetPixelData(BitmapPixelFormat.Rgba8, BitmapAlphaMode.Ignore,
- frameWidth, frameHeight,
- 92.0, 92.0,
- pixels);
- if (i == 0)
- {
- var properties = new BitmapPropertySet
- {
- {
- "/grctlext/Delay",
- new BitmapTypedValue(delay / 10, PropertyType.UInt16)
- }
- };
- await encoder.BitmapProperties.SetPropertiesAsync(properties);
- }
- if (i < frames.Count - 1)
- await encoder.GoToNextFrameAsync();
- }
- await encoder.FlushAsync();
- outStream.Dispose();
- });
- }
如果你是使用JavaScript作為Windows store應用開發語言,可以使用以下程式碼實現以上相同的效果,
- var picker = new Windows.Storage.Pickers.FileSavePicker();
- picker.fileTypeChoices.insert("Gif files", [".gif"]);
- picker.pickSaveFileAsync().then(function(file) {
- if (!file) {
- return;
- }
- var gifMaker = new Utilities.GifMaker(800, 600);
- for (var commandsIndex = 0; commandsIndex < currentFlipflop.pages.length; commandsIndex++) {
- // This code is used to retrieve canvases bytes
- var bytes = Flipflop.Tools.GetBytesfromFlipflop(currentFlipflop.pages[commandsIndex],
- 800, 600);
- gifMaker.appendNewFrame(bytes);
- }
- gifMaker.generateAsync(file, 200).done();
- });
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人
相關文章
- 8種Windows安全模式解析以及應用Windows模式
- 2.4.6 Step 5: (Windows)建立例項Windows
- 【ASM學習】在windows 環境下建立ASM例項ASMWindows
- 自制android gif動畫解析器Android動畫
- UML用例圖例項解析
- SQLite執行在WinRT, Metro以及Windows 8移動版SQLiteWindows
- ZT - RFT ScriptAssure 技術解析及應用例項(4)
- dd應用例項
- Windows XP 故障恢復控制檯應用例項(轉)Windows
- 建立第一個基於Prism框架的WPF應用例項(含原始碼下載)框架原始碼
- JavaScript 動畫效果例項JavaScript動畫
- Windows 98 登錄檔應用的30個例項(轉)Windows
- Windows 8下如何禁用啟動項Windows
- 使用gif分幀工具分解gif動畫動畫
- ”innerHTML“的應用例項HTML
- hive應用例項1Hive
- 智慧Web應用例項Web
- calico docker 應用例項Docker
- requestAnimationFrame()動畫例項程式碼requestAnimationFrame動畫
- localStorage應用程式碼例項
- sqoop應用例項1OOP
- Java解析Excel例項解析JavaExcel
- Pull解析例項
- iOS 動畫之Spring動畫、Block動畫、GIF圖iOS動畫SpringBloC
- 精妙無比 8款HTML5動畫例項及原始碼HTML動畫原始碼
- Windows 8啟用錯誤程式碼解析Windows
- Flutter動畫例項——4缸發動機動畫Flutter動畫
- jQuery 動畫效果程式碼例項jQuery動畫
- Web 應用程式中提交表單時處理 GIF 動畫的最佳實踐Web動畫
- Jersey—建立restfulwebservice—例項RESTWeb
- Oracle JOB 建立例項Oracle
- WebSocket 簡介及應用例項Web
- 機器視覺應用例項視覺
- redis應用場景及例項Redis
- python幾個應用例項Python
- opacity應用程式碼例項
- 基本複製應用例項(轉)
- ORACLE外部表的應用例項Oracle