🥦 HEIF-Converter
This module uses the C APIs libheif to bind it in Node.js using N-API.
⭐ Introduction
The libheif library is a software library used to read and write HEIF (High Efficiency Image Format) files.
HEIF is a file format for images and image sequences (like photos and videos) that offers superior compression compared to traditional formats like JPEG and PNG while maintaining high image quality.
For more information about the libraries used in this project, you can visit the following links:
❤️ Motivations
We created this module because, to date, we have not yet found a package that uses Node.js bindings for the libheif C library. Libraries like heic-convert, and others are very interesting but do not allow full utilization of the performance and speed of the C library.
Moreover, this project allows you to use asynchronous methods that will run in an AsyncWorker, which will prevent blocking the event loop of your application.
💥 Prerequisites
Before installing heif-converter, make sure you have the following tools installed on your machine:
🎈 Conversion
The heif-converter package facilitates the conversion of HEIF (High Efficiency Image File Format) images to other formats. However, it's important to note that this package specifically handles static images and does not support animated images. Additionally, metadata and auxiliary images within the HEIF file are not currently supported by the converter. You're welcome to contribute by suggesting improvements or enhancements to its functionality 😃.
heif-converter does not work on macOS, only on Windows x64 and Linux x64.
🦴 Installation
npm install heif-converter
🚀 API
toJpeg
The toJpeg method converts the primary image of a HEIC file to jpg.
interface JpegOptions {
quality?: number;
}
function toJpeg(
input: string | Buffer | Readable,
options?: JpegOptions
): Promise<Buffer>;
import lib from "../index.js";
const jpegBuffer = await lib.toJpeg("image.heic", { quality: 20 });
The value of the quality option is from 0 to 100. Default 75.
toPng
The toPng method converts the primary image of a HEIC file to png.
function toPng(input: string | Buffer | Readable): Promise<Buffer>;
import lib from "../index.js";
const pngBuffer = await lib.toPng("image.heic", { compression: 5 });
The value of the compression` option is from 1 to 9. Default 1.
The extract method allows you to obtain a list of images contained in a HEIC file. Each extracted image has two methods, toJpeg and toPng, which allow you to convert the image to JPEG or PNG format, respectively, as documented above.
interface JpegOptions {
quality?: number;
}
interface PngOptions {
compression?: number;
}
interface ExtractedImage {
toJpeg: (opts?: JpegOptions) => Promise<Buffer>;
toPng: (opts?: PngOptions) => Promise<Buffer>;
}
function extract(input: string | Buffer | Readable): Promise<ExtractedImage[]>;
import lib from "../index.js";
const images = await lib.extract("image.heic");
for (image of images) {
const jpegBuffer = await image.toJpeg({ quality: 50 });
}
Benchmark
The benchmark is accessible in the ./bench folder. You can run the following commands.
$ node ./bench/bench.js 1
$ node ./bench/bench.js 2
$ node ./bench/bench.js 3
This benchmark was conducted on a mid-range machine
HEIC file containing an image of 3992*2992.
Module | Convert | ops/sec | Average Time (ms) |
---|
heic-convert | JPEG | 0.45 | 2218 |
heif-converter | JPEG | 3.21 | 312 |
Module | Convert | ops/sec | Average Time (ms) |
---|
heic-convert | PNG | 0.28 | 3460 |
heif-converter | PNG | 0.78 | 1274 |
HEIC file containing an image of 2400*1600.
Module | Convert | ops/sec | Average Time (ms) |
---|
heic-convert | JPEG | 1.79 | 220 |
heif-converter | JPEG | 4.55 | 559 |
Module | Convert | ops/sec | Average Time (ms) |
---|
heic-convert | PNG | 1.16 | 366 |
heif-converter | PNG | 2.73 | 863 |
HEIC file containing an image of 640*426.
Module | Convert | ops/sec | Average Time (ms) |
---|
heic-convert | JPEG | 16.79 | 559 |
heif-converter | JPEG | 56.07 | 220 |
Module | Convert | ops/sec | Average Time (ms) |
---|
heic-convert | PNG | 13.60 | 863 |
heif-converter | PNG | 33.85 | 366 |