Image Meta Fetcher allows you to fetch metadata for images in a directory. It retrieves information such as the image width, height, and base64 encoded image data.
git clone https://github.com/AREA44/node-image-meta-fetcher
cd node-image-meta-fetcher
bun install
After that, remove example images then copy your images into images
folder and run:
bun run examples/ImageMetaFetcher.js
You'll get an images.json
in the examples
directory. This file will contain an array of objects, where each object represents an image. The objects will have the following properties:
src
: The path to the image filewidth
: The width of the image in pixelsheight
: The height of the image in pixelsbase64
: The base64 encoded image data
Licensed under the MIT License.