0.1.19 • Published 6 months ago
@pixpro/vue v0.1.19
PixPro AI图片处理库(AI Image Processing Library)
PixPro 是一个图片处理工具,提供了图片处理的基础功能,如常用的裁剪、等比例缩放、翻转、镜像、旋转等功能。同时,PixPro 还嵌入了各类第三方的AI图像处理能力,例如AI 扩图、AI擦除、AI去背景、AI提升解析度(更多陆续更新..)
您可以在任意网页端快速嵌入该工具【任意图片上传框、表单、后台等等】,即可实现无缝AI图像处理体验。
详见 Github 文档。
安装
npm install @pixpro/vue使用方法
<template>
<div class="editor-container">
<pix-pro-vue
:token="token"
:merchant-id="merchantId"
:host="host"
@export-image="handleExportImage"
@close="handleClose"
/>
</div>
</template>
<script setup lang="ts">
import { ref } from 'vue'
import { PixProVue } from '@pixpro/vue'
import '@pixpro/vue/dist/index.css'
const token = 'your_token'
const merchantId = 'your_merchant_id'
const host = 'https://api.example.com'
const handleExportImage = (imageData: string) => {
console.log('导出的图片数据:', imageData)
}
const handleClose = () => {
console.log('编辑器关闭')
}
</script>
<style>
.editor-container {
width: 100%;
height: 600px;
}
</style>0.1.19
6 months ago
0.1.18
6 months ago
0.1.17
6 months ago
0.1.16
7 months ago
0.1.15
7 months ago
0.1.14
7 months ago
0.1.13
7 months ago
0.1.12
7 months ago
0.1.11
7 months ago
0.1.10
7 months ago
0.1.9
7 months ago
0.1.8
7 months ago
0.1.7
7 months ago
0.1.6
7 months ago
0.1.5
8 months ago
0.1.0-beta.2
8 months ago
0.1.0-beta.1
8 months ago
0.1.4
8 months ago
0.1.3
8 months ago
0.1.2
8 months ago
0.1.1
8 months ago
0.1.0
8 months ago