Giter Site home page Giter Site logo

zopfli-asm's Introduction

zopfli.js

About

Porting Zopfli to JavaScript with Emscripten.

Usage

Use one in "bin" directory.

  • zopfli.min.js: Deflate + Zlib + Gzip
  • zopfli.raw.min.js: Deflate
  • zopfli.zlib.min.js: Zlib
  • zopfli.gzip.min.js: Gzip

Compression

RawDeflate

/** @type {(Array.<number>|Uint8Array)} */
var plain = [1, 2, 3, 4];

/** @type {Zopfli.Deflate} */
var compressor = new Zopfli.RawDeflate(plain);

/** @type {Uint8Array} */
var compressed = compressor.compress();

Zlib

/** @type {(Array.<number>|Uint8Array)} */
var plain = [1, 2, 3, 4];

/** @type {Zopfli.Deflate} */
var compressor = new Zopfli.Deflate(plain);

/** @type {Uint8Array} */
var compressed = compressor.compress();

Gzip

/** @type {(Array.<number>|Uint8Array)} */
var plain = [1, 2, 3, 4];

/** @type {Zopfli.Deflate} */
var compressor = new Zopfli.Gzip(plain);

/** @type {Uint8Array} */
var compressed = compressor.compress();

Compression Option

Second argument of constructor functions.

{
    'iterations': number // Zopfli iterations parameter (Default: 15)
}

How to Build

Requirement

  • Ant 1.8+
  • JRE 1.6+
  • Emscripten's Dependencies

Build

Use "ant" command.

$ ant [target]

Build target

target generate file implementation
debug zopfli.debug.min.js -
plain zopfli.plain.min.js -
deflate zopfli.raw.min.js Raw Deflate
zlib zopfli.zlib.min.js ZLIB Deflate
gzip zopfli.gzip.min.js GZIP
all * default target

License

Apache License 2.0

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.