Skip to content

Instantly share code, notes, and snippets.

View nguyenvanhoangnhan's full-sized avatar
☁️
Buying a Stairway to Heaven

Nhan Nguyen nguyenvanhoangnhan

☁️
Buying a Stairway to Heaven
View GitHub Profile
@nguyenvanhoangnhan
nguyenvanhoangnhan / heic2jpg.ts
Last active June 20, 2024 07:39
heic to jpg
import sharp from "sharp"
import decodeHeic from 'heic-decode'
import fs from 'fs'
export async function ConvertHeicBufferToJpegBuffer(
heicBuffer: Buffer,
): Promise<Buffer> {
const decodedHeic = await decodeHeic({
buffer: heicBuffer,
});