ssr-poster-pc-plugin

2.0.2 • Public • Published

ssr-poster-pc-plugin

概述

服务端渲染海报方案,合成插件PC版

使用方法

1、安装

npm install ssr-poster-pc-plugin

2、引用

<template>
    <create-poster ref="createPosterRef"/>
</template>

<script>
    import CreatePoster from 'ssr-poster-pc-plugin/CreatePoster';

    export default {
        name: 'test',
        components: {
            CreatePoster
        },
        mounted() {
            const qrcode = 'https://imgcdn.huanjutang.com/assets/img/2020428155511847.jpg';
            const { image, imgProps, qrCodeProps } = {
                image: 'https://imgcdn.huanjutang.com/assets/posters/15919415174372185.png',
                imgProps: {
                    w: 750,
                    h: 1334,
                },
                qrCodeProps: {
                    x: 276,
                    y: 658,
                    size: 199
                }
            };

            this.$refs.createPosterRef.posterCompose(image, qrcode, {
                imgProps,
                qrCodeProps,
            }).then(buff => {
                // buff 图片buffer
            }).catch(() => {
                // 生成失败
            });
        }
    }
</script>

方法说明

posterCompose 合成图片(重复调用会重新绘制页面)

Readme

Keywords

none

Package Sidebar

Install

npm i ssr-poster-pc-plugin

Weekly Downloads

2

Version

2.0.2

License

ISC

Unpacked Size

5.11 kB

Total Files

3

Last publish

Collaborators

  • mrdl
  • lm0304