OLD | NEW |
1 | 1 |
2 # gif.js | 2 # gif.js |
3 | 3 |
4 JavaScript GIF encoder that runs in your browser. | 4 JavaScript GIF encoder that runs in your browser. |
5 | 5 |
6 Uses typed arrays and web workers to render each frame in the background, it's r
eally fast! | 6 Uses typed arrays and web workers to render each frame in the background, it's r
eally fast! |
7 | 7 |
8 **Demo** - http://jnordberg.github.io/gif.js/ | 8 **Demo** - http://jnordberg.github.io/gif.js/ |
9 | 9 |
10 Works in browsers supporting: [Web Workers](http://www.w3.org/TR/workers/), [Fil
e API](http://www.w3.org/TR/FileAPI/) and [Typed Arrays](https://www.khronos.org
/registry/typedarray/specs/latest/) | 10 Works in browsers supporting: [Web Workers](http://www.w3.org/TR/workers/), [Fil
e API](http://www.w3.org/TR/FileAPI/) and [Typed Arrays](https://www.khronos.org
/registry/typedarray/specs/latest/) |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 The above copyright notice and this permission notice shall be included in | 98 The above copyright notice and this permission notice shall be included in |
99 all copies or substantial portions of the Software. | 99 all copies or substantial portions of the Software. |
100 | 100 |
101 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 101 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
102 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 102 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
103 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | 103 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
104 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 104 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
105 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 105 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
106 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | 106 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
107 THE SOFTWARE. | 107 THE SOFTWARE. |
OLD | NEW |