Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xd-tayde/mcanvas
用于合成图片的canvas绘制库
https://github.com/xd-tayde/mcanvas
canvas image-composite image-crop image-textview watermark
Last synced: 3 months ago
JSON representation
用于合成图片的canvas绘制库
- Host: GitHub
- URL: https://github.com/xd-tayde/mcanvas
- Owner: xd-tayde
- Created: 2017-07-20T09:56:13.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T00:02:16.000Z (about 2 years ago)
- Last Synced: 2024-04-15T08:08:38.722Z (9 months ago)
- Topics: canvas, image-composite, image-crop, image-textview, watermark
- Language: TypeScript
- Homepage: http://www.guoxiaodong.net
- Size: 5.16 MB
- Stars: 399
- Watchers: 8
- Forks: 77
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
- awesome-canvas - mcanvas - mcanvas is a image handler plugin that can easily merge, crop, compress, filter the image and export a image of base64 finally. ![](https://img.shields.io/github/stars/xd-tayde/mcanvas?style=social) ![](https://img.shields.io/github/forks/xd-tayde/mcanvas?style=social) (Libraries / Image processing)
README
# mcanvas
New version 2.0.0 is coming. It contains some new features:
- Support new function:
- image merge;
- image compress;
- image crop;
- image filter;
- Support usage in node.js;
- .draw() support usage by promise;
- Rewrite in typescript;**[Example](http://guoxiaodong.net/)**
**[Git](https://github.com/xd-tayde/mcanvas)**
## Document
[English](https://github.com/xd-tayde/mcanvas/blob/master/README_EN.md) | [中文版](https://github.com/xd-tayde/mcanvas/blob/master/README_ZH.md)
## Introduction
mcanvas is a image handler plugin that can easily merge, crop, compress, filter the image and export a image of base64 finally. It provides some simple api that based on canvas, in order to make your work more efficiently and conveniently.
## Installation
- You can download the latest version from the [GitHub](https://github.com/xd-tayde/mcanvas/blob/master/dist)
- use a npm CDN [Web](https://unpkg.com/mcanvas/dist/mcanvas.web.js) and use `window.MCanvas`- Or you can install via npm:
```js
npm install mcanvas --saveimport { MCanvas } from 'mcanvas'
```## Basic Usage
- `MCanvas`
```js
// create the canvas by width and height;
import { MCanvas } from 'mcanvas'const mc = new MCanvas({
width,
height,
backgroundColor,
});// prepare background-image
mc.background(image, {
left: 0,
top: 0,
color: '#000000',
type: 'origin',
})// prepare the image material, add into queue;
.add('images/nose.png',{
width:183,
pos:{
x:250,
y:369,
scale:0.84,
rotate:1,
},
})// add text;
.text('normal
smallsmall',{
width:'300px',
align:'center',
pos:{
x:0,
y:0,
},
})// prepare watermark;
.watermark(img ,{
width:'40%',
pos:'rightBottom',
})// draw all material that prepared before, and get the base64-image
.draw(b64 =>{
console.log(b64);
});
```
- `MImage````js
// image handler
// inclue crop / compress / common filter
import { MImage } from 'mcanvas'const mi = new MImage('http://mtapplet.meitudata.com/596c72073971d86b5128.jpg')
mi.filter('blur')
// crop to area by 300 * 300 and center in origin image
.crop({
x: 'center',
y: 'center',
width: 300,
height: 300,
radius: 10,
})
// compress into a image that width is 200px and quality is 0.9
.compress({
width: 200,
quality: .9,
})
// get the base64-image
.draw(b64 => {
console.log(b64)
})
```## License
[MIT](https://opensource.org/licenses/MIT)