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
- Host: GitHub
- URL: https://github.com/zzx0106/img-log
- Owner: zzx0106
- Created: 2018-09-27T15:43:51.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-27T15:53:02.000Z (over 6 years ago)
- Last Synced: 2025-01-17T07:11:05.366Z (5 months ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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);
````