Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kooriookami/leafer-compress-text

一个使用 LeaferJS 作为 Canvas 渲染引擎的文本压缩示例
https://github.com/kooriookami/leafer-compress-text

Last synced: 9 days ago
JSON representation

一个使用 LeaferJS 作为 Canvas 渲染引擎的文本压缩示例

Awesome Lists containing this project

README

        

# 文本压缩 CompressText

文本压缩使用 Leafer UI 开发。

## 在线演示

[在线演示](https://kooriookami.github.io/leafer-compress-text/)

## 流程图
![process](src/assets/image/process.png)

## 使用说明

```npm i leafer-compress-text```

```js
import { Leafer } from 'leafer-ui';
import { CompressText } from 'leafer-compress-text';

const leafer = new Leafer({
... // 参数见 https://leaferjs.com/
});

const compressText = new CompressText({
... // 参数见 src/compress-text/compress-text.js => this.defaultData
});
leafer.add(compressText);
```

## 示例代码

[示例代码](src/components/CompressText.vue)