Skip to content

开始

安装

使用 npm:

bash
$ npm install watermark-js-plus

使用 yarn:

bash
$ yarn add watermark-js-plus

用法

  1. 引入水印插件
ts
import { Watermark } from 'watermark-js-plus'
  1. 实例化
ts
const watermark = new Watermark({
  content: 'hello my watermark',
  width: 200,
  height: 200,
  onSuccess: () => {
    // success callback
  }
})
  1. 添加水印
ts
watermark.create()

CDN

使用 jsDelivr CDN:

html
<script src="https://cdn.jsdelivr.net/npm/watermark-js-plus/dist/index.iife.min.js"></script>

使用 unpkg CDN:

html
<script src="https://unpkg.com/watermark-js-plus/dist/index.iife.min.js"></script>

用法

ts
const watermark = new WatermarkPlus.Watermark({
  content: 'hello my watermark',
  width: 200,
  height: 200
})
watermark.create();

本中文文档内容版权为 Michael Sun 所有,保留所有权利。