ddernon

Results 5 comments of ddernon

I've been using this build for a while now and didn't notice any missing string 👀

I was unaware that those strings could be used from plugins... Is there a way to make sure no plugin use them? Or should I just pick a list of...

I can confirm the behavior described by Nigel. I load a picture from a buffer and resize it (I want to make thumbnails). The thumbnail is saved with the proper...

Actually, since OP mentioned it might be a Buffer-specific issue, I tried the following and still had the problem, so it's not Buffer-specific: ``` const dummyPicPath = path.join('/', 'dummy4242.jpeg'); fs.writeFileSync(dummyPicPath,...

You could probably implement a JS workaround using stuff like ts-exif-parser and/or this https://stackoverflow.com/questions/41490122/strip-exif-data-from-image-node-js-addressing-a-possible-bug-in-the-original-v I ended up implementing my thumbnailing thing in Rust. It seemed the cleaner way to go...