ofd.js/README.md

101 lines
2.6 KiB
Markdown
Raw Normal View History

2020-09-10 15:39:26 +08:00
# ofd.js
2020-10-12 23:43:04 +08:00
### 在使用ofd.js前请务必悉知 [《ofd.js免责声明》](https://github.com/DLTech21/ofd.js/blob/master/%E5%85%8D%E8%B4%A3%E5%A3%B0%E6%98%8E.md)
2020-10-12 16:46:40 +08:00
2020-09-10 16:18:49 +08:00
![-](https://img.shields.io/badge/language-js-orange.svg) [![license](https://img.shields.io/badge/license-Apache--2.0-blue)](./LICENSE)
2020-09-10 15:41:31 +08:00
2020-09-10 15:39:26 +08:00
目前方案采用svg及canvas渲染实现百分百纯前端渲染
效果:
![示例](./ofd.jpg)
2022-09-06 13:38:52 +08:00
小程序OFD验签示例
2020-09-11 13:28:21 +08:00
2022-09-06 13:38:52 +08:00
![示例](./gh_6711026c0ea7_258.jpg)
2020-09-21 18:59:34 +08:00
2022-09-06 13:38:52 +08:00
微信
2020-10-10 11:59:37 +08:00
2022-09-06 13:38:52 +08:00
![示例](./wx.jpg)
2020-09-10 15:39:26 +08:00
2022-09-22 11:31:30 +08:00
```md
npm i ofd.js
```
2022-09-22 11:30:51 +08:00
#### 解析OFD文件
```
parseOfdDocument({
ofd: ofdFile,
success() {
},
fail(error){
console.log(error)
}
})
```
#### 一次性渲染OFD对应文档的所有页适合页数少
**此方法需要在parseOfdDocument success回调后使用**
| 参数 | 说明 | 是否必填 |
| ----------- | ------------------------------------------------------------ | -------- |
| documentIndex | ofd文档中document的索引默认从0开始 | 是 |
| width | 预期渲染的宽度,像素值 如800 | 否 |
```
renderOfd(documentIndex, width).then(divs=>{
// do something
})
```
#### 渲染OFD对应文档的对应页
**此方法需要在parseOfdDocument success回调后使用**
| 参数 | 说明 | 是否必填 |
| ----------- | ------------------------------------------------------------ | -------- |
| documentIndex | ofd文档中document的索引默认从0开始 | 是 |
| pageIndex | ofd文档中页码默认从0开始 | 是 |
| width | 预期渲染的宽度,像素值 如800 | 否 |
```
renderOfdByIndex(documentIndex, pageIndex, width).then(div => {
// do something
}})
```
2020-09-10 15:39:26 +08:00
## ofd推荐项目
[OFD Reader & Writer](https://github.com/Trisia/ofdrw)
## 参与贡献
发挥人人为我我为人人的优良传统多做pr~~~
2020-09-09 18:46:28 +08:00
## Project setup
```
npm install
```
### Compiles and hot-reloads for development
```
npm run serve
```
### Compiles and minifies for production
```
npm run build
```
### Lints and fixes files
```
npm run lint
```
### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
2020-09-10 15:39:26 +08:00
### 项目关注度
> 项目获得 Star曲线
[![Stargazers over time](https://starchart.cc/DLTech21/ofd.js.svg)](https://starchart.cc/DLTech21/ofd.js)