A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/julusian/node-jpeg-turbo below:

Julusian/node-jpeg-turbo: Limited libjpeg-turbo bindings for Node.js.

This is a fork of jpeg-turbo with the intention of being maintained and bringing support for new versions of node

node-jpeg-turbo provides minimal libjpeg-turbo bindings for Node.js. It is very, very fast compared to other alternatives, such as node-imagemagick-native or jpeg-js.

Please ask if you need more methods exposed.

All versions of Node still in active Long-term Support and the current development version are supported. Older versions may or may not work; they are not and will not be supported.

We provide prebuilds for some platforms, meaning that you should not have to compile native bindings from source very often. The bindings are hosted at and automatically installed from our GitHub Releases.

If you must build from source

First, if you're building from the repo, make sure to init and update submodules or you'll get confusing errors about missing targets when building. We include libjpeg-turbo as a submodule.

git submodule init
git submodule update

(or just use git clone --recursive when cloning the repo)

We build libjpeg-turbo directly with cmake, so both cmake and yasm are required on your machine. yasm is only required on x86 and x86_64 architectures.

To install:

On OS X

brew install yasm
brew install cmake

On Ubuntu/Debian

apt-get install yasm cmake

On Windows

Download and install the latest from here. Make sure to select the option to put it on path for all users.

Download Win32 or Win64 yasm from here and make sure it's found in path as yasm.exe. Use the "for general use" version. If the .exe doesn't run, or complains about a missing MSVCR100.dll, you can install the missing VS2010 Redist x64 from KB2977003. The .exe should work fine after installing the redistributable.

To verify your yasm setup, run:

This should give the output:

yasm: No input files specified

Next, you need to make sure that you have a build environment set up. An easy way to do that is to use windows-build-tools.

Now, just to make sure things are set up properly, run:

npm config get msvs_version

If the output is 2015 or newer, you're good. If it's anything else, or not set, you must run:

npm config set -g msvs_version 2015

Alternatively, you can specify the option at install time with --msvs_version=2015.

Others

Search your package manager for yasm.

Make sure you've got the requirements installed first.

Using yarn:

yarn add @julusian/jpeg-turbo

Using npm:

npm install --save @julusian/jpeg-turbo
jpg.bufferSize(options)Number

If you'd like to preallocate a Buffer for jpg.compressSync(), use this method to get the worst-case upper bound. The options argument is fully compatible with the jpg.compressSync() method, so that you can pass the same options to both functions.

var fs = require('fs')
var jpg = require('@julusian/jpeg-turbo')

var raw = fs.readFileSync('raw.rgba')

var options = {
  format: jpg.FORMAT_RGBA,
  width: 1080,
  height: 1920,
  subsampling: jpg.SAMP_444,
}

var preallocated = new Buffer(jpg.bufferSize(options))

var encoded = jpg.compressSync(raw, preallocated, options)
jpg.compressSync(raw[, out], options)Object

Compresses (i.e. encodes) the raw pixel data into a JPG. This method is not capable of resizing the image.

For efficiency reasons you may choose to encode into a preallocated Buffer. While fast, it has a number of drawbacks. Namely, you'll have to be careful not to reuse the buffer in async processing before processing (e.g. saving, displaying or transmitting) the entire encoded image. Otherwise you risk corrupting the image. Also, it wastes a huge amount of space compared to on-demand allocation.

var fs = require('fs')
var jpg = require('@julusian/jpeg-turbo')

var raw = fs.readFileSync('raw.rgba')

var options = {
  format: jpg.FORMAT_RGBA,
  width: 1080,
  height: 1920,
  subsampling: jpg.SAMP_444,
}

var encoded = jpg.compressSync(raw, options)

See jpg.bufferSize() for an example of preallocated Buffer usage.

jpg.decompressSync(image[, out], options)Object

Decompresses (i.e. decodes) the JPG image into raw pixel data.

var fs = require('fs')
var jpg = require('@julusian/jpeg-turbo')

var image = fs.readFileSync('image.jpg')

var options = {
  format: jpg.FORMAT_RGBA,
}

var decoded = jpg.decompressSync(image, options)

See LICENSE.

Copyright © Julian Waller. All Rights Reserved.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4