8000 GitHub - cloudflightio/heif-converter: High performance HEIF/HEIC -> JPG/PNG convertor (N-API binding to libheif) Fix for Windows (missing zlib.dll)
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

High performance HEIF/HEIC -> JPG/PNG convertor (N-API binding to libheif) Fix for Windows (missing zlib.dll)

License

Notifications You must be signed in to change notification settings

cloudflightio/heif-converter

 
 

Repository files navigation

🥦 HEIF-Converter

This module uses the C APIs libheif to bind it in Node.js using N-API.

Engine

Node

  • Node.js 18.x

Prebuilt binaries

  • MacOS x64 (>= 12)
  • Windows x64/x86
  • Linux x64 (glibc >= 2.28, musl >= 1.2.4)

⭐ 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 librarie 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 😃.

Developer

If you wish to contribute or build libheif from source, you can visit this link.

🦴 Installation

npm install @cloudflight/heif-converter

🚀 API

version

The version method is used to obtain the version of libheif.

function version(): string;
import lib from "../index.js";

console.log(lib.version());
// 1.17.6
toPng

The toPng method converts the primary image of a HEIC file to png.

Converts only the primary image of the HEIC file.

function toPng(input: Buffer | Readable): Promise<Buffer>;
// Import Node.js Dependencies
import path from "node:path";

// Import Internal Dependencies
import lib from "../index.js";

const filePath = path.join(__dirname, "image.heic")
const pngBuffer = await lib.toPng(filePath, { compression: 5 });

The value of the compression option is from 1 to 9. Default 1.

📢 Benchmark

The benchmark is accessible in the ./benchmark folder. You can run the following commands.

$ node ./benchmark/bench.js 1
# OR
$ node ./benchmark/bench.js 2
# OR
$ node ./benchmark/bench.js 3

This benchmark was conducted on a mid-range machine.

HEIC file containing an image of 3992*2992.

HEIC file containing an image of 2400*1600.

HEIC file containing an image of 640*426.

About

High performance HEIF/HEIC -> JPG/PNG convertor (N-API binding to libheif) Fix for Windows (missing zlib.dll)

Resources

License

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 84.7%
  • C++ 13.7%
  • Other 1.6%
0