0.3.5 • Published 2 months ago

heic-jpg-exif v0.3.5

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

heic-jpg-exif

ci npm-downloads npm-version

Conversion from HEIC to JPG while retaining essential EXIF metadata

Install

npm install heic-jpg-exif

Usage (NodeJS)

const convert = require('heic-jpg-exif');

Convert an HEIC image file to a JPEG file at maximum quality (1)

await convert('input.HEIC', 'output.jpg', 1);

Convert an HEIC buffer to a JPEG buffer

const inBuffer = fs.readFileSync('input.HEIC');
const outBuffer = await convert(inBuffer);

Background

The HEIC image is first converted to a JPG with heic-convert and then complemented with the EXIF metadata of the source image using exifr and piexif-ts.

See also

0.3.5

2 months ago

0.3.4

2 months ago

0.3.3

2 months ago

0.3.2

2 months ago

0.3.1

2 months ago

0.3.0

2 months ago

0.2.0

2 months ago

0.1.1

2 months ago

0.1.0

2 months ago