RE: Async Image - ImageData conversion

2015-06-17 Thread Travis Leithead
I think solving at least the first-order problem of extracting data from the Canvas async is do-able. Something like: PromiseImageData getImageDataAsync(x,y,w,h); seems sensible to add ☺ From: a...@scirra.com [mailto:a...@scirra.com] On Behalf Of Ashley Gullen Sent: Wednesday, June 17, 2015

[admin] Use public-patent-issues list for all patent discussions [Was: Need a list for Extract Widget patent]

2015-06-17 Thread Arthur Barstow
All - the public-patent-issues list [1] was created for patent related discussions such as patent disclosures. Please use [1] (which isn't, AFAIK, associated with any specific group) for *all* patent related discussion and do not use any of WebApps' lists for such purposes. -Thank you, AB

Re: PSA: Web Components vs Extract Widget patent

2015-06-17 Thread Aymeric Vitte
FYI, the gists have been moved (and somewhere componentized) here: http://www.peersm.com/gist1.html: Extract Widget Patent FR2962237 - Process to create an application of gadget type incorporated into a container of widget type http://www.peersm.com/gist2.html: Patent FR2962237 - Main claim,

Re: PSA: Web Components vs Extract Widget patent

2015-06-17 Thread Arthur Barstow
On 6/17/15 5:29 PM, Aymeric Vitte wrote: As directed in [1], if anyone wants to reply to this thread, please use the public-patent-issues list and do *not* reply on public-webapps. -Thank you, AB [1] https://lists.w3.org/Archives/Public/public-webapps/2015AprJun/0912.html

Re: Async Image - ImageData conversion

2015-06-17 Thread Ashley Gullen
That seems like a good start. I suppose there should be a putImageDataAsync counterpart too? Then we can do: Blob - Image via: load blob URL Blob - ImageData via: load blob URL - Canvas drawImage - getImageDataAsync Image - Blob via: Canvas drawImage - Canvas toBlob Image - ImageData via: Canvas

Re: [manifest] Manifest for web application; review ...

2015-06-17 Thread Kostiainen, Anssi
Hi, On 02 Jun 2015, at 00:58, timeless timel...@gmail.com wrote: http://www.w3.org/TR/2015/WD-appmanifest-20150212/ Thanks for the detailed review. The pull request with you review feedback baked in is at: https://github.com/w3c/manifest/pull/383 The changes should land after being

Async Image - ImageData conversion

2015-06-17 Thread Ashley Gullen
I was wondering if there is anything on the standards track to asynchronously get an ImageData object from an Image? We have a web app dealing with large sprite sheets (up to 2048x2048), and at some point we need to get an ImageData for this. Currently the only way I know of doing this is via a