j2k.js

Port of OpenJPEG, an open-source JPEG2000 codec, to JavaScript using Emscripten

  • 所有者: kripken/j2k.js
  • 平台:
  • 许可证: BSD 2-Clause "Simplified" License
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

j2k.js

This is a port of OpenJPEG, an open-source JPEG2000 codec, to JavaScript using Emscripten.

Why? JPEG2000 is useful sometimes, and web browsers don't have native support for it, so having
a pure JS decoder is a nice option to have.

Usage

Grab openjpeg.js which is an optimized and minified build. Then you simply call

    openjpeg(data, suffix)

with the first argument being an array of values in 0-255 (representing a file in binary format),
and the second argument being the suffix of the file (there is no autodetection of the file type
in OpenJPEG, and whether it is a .jp2 or .j2k does actually matter it turns out). The function
returns a a JSON object of form

    {
      width: the width
      height: the height
      data: the pixel data (in 24-bit "Planar RGB" format)
    }

See test.js for a concrete example (it is called by test.py).

Note: j2k.js by default requires typed arrays. You can also build it without typed arrays,
but it will be much slower (see below).

Building

(You don't normally need to do this.)

Do

    python make.py

Note: Looks like you need, make clean, in build/ as incremental builds do not always link.

You can modify the settings in make.py. For example, changing
USE_TYPED_ARRAYS to 0 will make it generate a build without typed arrays
(which as mentioned above, will be slower but will work if the environment
lacks typed arrays).

Testing

Run

    python test.py openjpeg.js

The generated files are written to generated.raw. You can view them in GIMP
by opening them as RAW (select "all files", then "select file type" as raw,
and pick "generated.raw"). You should select "Planar RGB" as the format, and
enter the right width and height.

You should also make sure that examples/simple.html and examples/worker.html
both work properly in a web browser.

概览

名称与所有者kripken/j2k.js
主编程语言C
编程语言C++ (语言数: 8)
平台
许可证BSD 2-Clause "Simplified" License
发布数0
创建于2011-10-28 23:44:54
推送于2011-12-14 02:28:18
最后一次提交2011-12-13 18:28:17
星数82
关注者数10
派生数15
提交数34
已启用问题?
问题数4
打开的问题数3
拉请求数3
打开的拉请求数0
关闭的拉请求数1
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?
去到顶部