2.0.2 • Published 3 years ago

ssr-poster-pc-plugin v2.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

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 合成图片(重复调用会重新绘制页面)

2.0.2

3 years ago

2.0.1

3 years ago

2.0.0

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago