I'm writing a WinJS app and it would be a nice feature to handle animated GIFs. After some research, if would seem that in order to do that, that the data is copied to the clipboard using the little know CF_GIF clipboard format
how to get animated gif image from browser clipboard api?
but looking over the WinJS documentation for clipboard formats
it doesn't seem like CF_GIF is available, and when I copy a GIF to the clipboard and look at dataPackageView with the command
var dataPackageView = Windows.ApplicationModel.DataTransfer.Clipboard.getContent();
it just shows up as a bitmap. Can anyone tell me if it is indeed possible to get an animated GIF from the clipboard or some kind of work around?