An open API service indexing awesome lists of open source software.

https://github.com/zzx0106/img-log

img->conosle.log
https://github.com/zzx0106/img-log

Last synced: 3 months ago
JSON representation

img->conosle.log

Awesome Lists containing this project

README

        

# img-log
一个简单的将图片转化为base64然后渲染到console.log上的小插件
##### 转化过程
image ---> blob ----> base64 ----> console.log

##### 使用方式
````
npm i img-log -S
````
````
import imgLog from 'img-log';
imgLog('your img path', fontSize); // fontSize决定了图片的大小
````
or
````
var imgLog = require('img-log');
imgLog('your img path', fontSize);
````