imgurify
Browserify transform that allows you to require images - base64\ data uri's.
\ base64 only for raster images, svgs are inlined as svg+xml, because reasons...
Install
npm install --save imgurifyUse
browserify -t imgurify entry.jsvar pony = require('./graphics/pony.png')
console.log(pony)
// => data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADcA...Changelog
2.0.1
- Improve SVG encoding - thanks felthy :tada:
2.0.0
- Total rewrite
- Reading files "manually" becuase weird browserify buffer behaviour (hoping to revert this back in the future)
1.2.2
- Fixed incorrect mimetype for jpg
1.2.1
- Fixed base64 encoding of large (multibuffer) raster images