You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can anyone help me setting up an Electron project?
I mean.. do I need to install separately? or it pulls the correct binaries and builds with Electron? (like sharp do).
I need to extract thumbnails from raw photos.. currently I'm using an exif tool for jpegs, but I need exiv2.
Any help is welcome,
Kind regards
The text was updated successfully, but these errors were encountered:
Hi there, I would imagine that you've solved your problem, but for folks who stumble here:
For electron production build you have to tell your packager\builder which executables to pack with your app, with electron-builder for example it's "build.extraResources" setting - it just copies everything from source folder to output folder. You'll have to check what and where your app tries to load yourself to setup that.
For example to include imagemin libs I had to add along the lines of:
Which grabs all compiled binaries from my local pngquant and copies to app's resources path.
You'll have to figure out from and to where supply yours binaries for each external lib and OS configuration.
I'll be adding exiv2 to my project soon and might update config specifically for it.
That's the most simple way, others would include makeshifting a build step on user's machine on install, like loading all the required libraries, etc, but it would most probably be much more hassle to set up.
Hi,
Can anyone help me setting up an Electron project?
I mean.. do I need to install separately? or it pulls the correct binaries and builds with Electron? (like sharp do).
I need to extract thumbnails from raw photos.. currently I'm using an exif tool for jpegs, but I need exiv2.
Any help is welcome,
Kind regards
The text was updated successfully, but these errors were encountered: