Merge branch 'dev_vite' of http://18.167.251.121:10003/aidlab/aida_front into dev_vite

This commit is contained in:
zhangyh
2025-11-12 16:34:15 +08:00
14 changed files with 839 additions and 18 deletions

View File

@@ -54,6 +54,12 @@
<div class="content unicode" style="display: block;">
<ul class="icon_lists dib-box">
<li class="dib">
<span class="icon iconfont">&#xe650;</span>
<div class="name">裁剪</div>
<div class="code-name">&amp;#xe650;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe60a;</span>
<div class="name">角度</div>
@@ -270,9 +276,9 @@
<pre><code class="language-css"
>@font-face {
font-family: 'iconfont';
src: url('iconfont.woff2?t=1762495405814') format('woff2'),
url('iconfont.woff?t=1762495405814') format('woff'),
url('iconfont.ttf?t=1762495405814') format('truetype');
src: url('iconfont.woff2?t=1762934152017') format('woff2'),
url('iconfont.woff?t=1762934152017') format('woff'),
url('iconfont.ttf?t=1762934152017') format('truetype');
}
</code></pre>
<h3 id="-iconfont-">第二步:定义使用 iconfont 的样式</h3>
@@ -298,6 +304,15 @@
<div class="content font-class">
<ul class="icon_lists dib-box">
<li class="dib">
<span class="icon iconfont icon-caijian"></span>
<div class="name">
裁剪
</div>
<div class="code-name">.icon-caijian
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-angle"></span>
<div class="name">
@@ -622,6 +637,14 @@
<div class="content symbol">
<ul class="icon_lists dib-box">
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-caijian"></use>
</svg>
<div class="name">裁剪</div>
<div class="code-name">#icon-caijian</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-angle"></use>

View File

@@ -1,8 +1,8 @@
@font-face {
font-family: "iconfont"; /* Project id 4292253 */
src: url('iconfont.woff2?t=1762495405814') format('woff2'),
url('iconfont.woff?t=1762495405814') format('woff'),
url('iconfont.ttf?t=1762495405814') format('truetype');
src: url('iconfont.woff2?t=1762934152017') format('woff2'),
url('iconfont.woff?t=1762934152017') format('woff'),
url('iconfont.ttf?t=1762934152017') format('truetype');
}
.iconfont {
@@ -13,6 +13,10 @@
-moz-osx-font-smoothing: grayscale;
}
.icon-caijian:before {
content: "\e650";
}
.icon-angle:before {
content: "\e60a";
}

File diff suppressed because one or more lines are too long

View File

@@ -5,6 +5,13 @@
"css_prefix_text": "icon-",
"description": "",
"glyphs": [
{
"icon_id": "22138606",
"name": "裁剪",
"font_class": "caijian",
"unicode": "e650",
"unicode_decimal": 58960
},
{
"icon_id": "8875396",
"name": "角度",

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -493,7 +493,7 @@ export class ExportLayerToImageCommand extends Command {
this._collectLayersAndObjects();
}
async execute() {
async execute(isDownload = true) {
if (!this.layer) {
throw new Error(`图层 ${this.layerId} 不存在`);
}
@@ -532,18 +532,21 @@ export class ExportLayerToImageCommand extends Command {
fabricObjects: this.objectsToRasterize,
isReturenDataURL: true,
maskObject: clippingMaskFabricObject || null, // 不处理遮罩
scaleFactor: isDownload ? 2 : 1,
});
// 模拟浏览器下载
const link = document.createElement("a");
link.href = imageBase64;
link.download = `${this.layer.name}.png`;
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
if (isDownload) {
const link = document.createElement("a");
link.href = imageBase64;
link.download = `${this.layer.name}.png`;
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
}
console.log(`✅ 图层 ${this.layer.name} 导出完成`);
return true;
return imageBase64;
} catch (error) {
console.error("导出图层失败:", error);
throw error;

View File

@@ -0,0 +1,705 @@
<template>
<!-- 图片列表面板 -->
<div v-if="showPanel" class="crop-image-overlay" @click.self="close">
<div class="crop-image-modal">
<div class="modal-header">
<h3>{{ $t("Canvas.cropImage") }}</h3>
<button class="close-btn" @click="close">&times;</button>
</div>
<div class="modal-content">
<!-- 图片剪切 -->
<div class="image-clip" ref="el" v-if="data.url">
<div
class="box"
ref="box"
:style="{
width: clipData.img_width + 'px',
height: clipData.img_height + 'px',
}"
>
<img :src="data.url" />
<div class="shade"></div>
<div
ref="clipRef"
class="clip"
:style="{
top: clipData.top + 'px',
left: clipData.left + 'px',
width: clipData.width + 'px',
height: clipData.height + 'px',
}"
@mousedown.stop="clipMousedown"
@touchstart.stop="clipMousedown"
>
<div class="img">
<img
:src="data.url"
:style="{
width: clipData.img_width + 'px',
height: clipData.img_height + 'px',
top: -clipData.top + 'px',
left: -clipData.left + 'px',
}"
/>
</div>
<div
class="top"
@mousedown.stop="topMousedown"
@touchstart.stop="topMousedown"
></div>
<div
class="right"
@mousedown.stop="rightMousedown"
@touchstart.stop="rightMousedown"
></div>
<div
class="bottom"
@mousedown.stop="bottomMousedown"
@touchstart.stop="bottomMousedown"
></div>
<div
class="left"
@mousedown.stop="leftMousedown"
@touchstart.stop="leftMousedown"
></div>
<span
class="top"
@mousedown.stop="topMousedown"
@touchstart.stop="topMousedown"
></span>
<span
class="right"
@mousedown.stop="rightMousedown"
@touchstart.stop="rightMousedown"
></span>
<span
class="bottom"
@mousedown.stop="bottomMousedown"
@touchstart.stop="bottomMousedown"
></span>
<span
class="left"
@mousedown.stop="leftMousedown"
@touchstart.stop="leftMousedown"
></span>
</div>
</div>
</div>
<!-- 空状态 -->
<div class="empty-state" v-else>
<div class="empty-icon">📷</div>
<p>{{ $t("Canvas.NoPicture") }}</p>
</div>
</div>
<div class="modal-footer">
<div class="image-count"></div>
<div class="image-submit gallery_btn" @click="confirm">
{{ $t("Canvas.confirm") }}
</div>
</div>
</div>
</div>
</template>
<script setup lang="ts">
import {
ref,
computed,
defineProps,
onDeactivated,
reactive,
onMounted,
defineExpose,
} from "vue";
import { useI18n } from "vue-i18n";
// Props
const props = defineProps([]);
const { t } = useI18n();
var resolveFn: (value: string | PromiseLike<string>) => void;
const showPanel = ref(false);
const open = (url: string) => {
showPanel.value = true;
setImgage(url);
return new Promise((resolve) => (resolveFn = resolve));
};
const close = () => {
showPanel.value = false;
};
//提交选中的T图片
const confirm = () => {
close();
const base64 = getImageBase64();
resolveFn && resolveFn(base64);
};
const data = reactive({
url: "",
});
const el = ref();
const box = ref();
const clipRef = ref();
const clipData = reactive({
top: 0,
left: 0,
width: 0,
height: 0,
img_width: 0,
img_height: 0,
});
const canvas = document.createElement("canvas");
const ctx = canvas.getContext("2d");
const reload = () => {
if (!el.value) return;
const size = Math.min(
1,
el.value.offsetWidth / canvas.width,
el.value.offsetHeight / canvas.height
);
const width = size * canvas.width;
const height = size * canvas.height;
clipData.left = 0;
clipData.top = 0;
clipData.width = width;
clipData.height = height;
clipData.img_width = width;
clipData.img_height = height;
};
window.addEventListener("resize", reload);
onDeactivated(() => {
window.removeEventListener("resize", reload);
});
const setImgage = (url: string) => {
if (!url) return;
const img = new Image();
img.src = url;
data.url = url;
img.onload = () => {
const width = img.width;
const height = img.height;
canvas.width = width;
canvas.height = height;
ctx?.clearRect(0, 0, width, height);
ctx?.drawImage(img, 0, 0, width, height);
nextTick(() => reload());
};
};
const canvasImageDataToBase64 = (imageData: any) => {
// 创建一个临时的canvas元素
const canvas = document.createElement("canvas");
canvas.width = imageData.width;
canvas.height = imageData.height;
const ctx = canvas.getContext("2d");
ctx?.putImageData(imageData, 0, 0);
const dataURL = canvas.toDataURL("image/png");
return dataURL;
};
const base64toFile = (dataurl, filename = "file") => {
//转换base64
let arr = dataurl.split(",");
let mime = arr[0].match(/:(.*?);/)[1];
let suffix = mime.split("/")[1];
let bstr = atob(arr[1]);
let n = bstr.length;
let u8arr = new Uint8Array(n);
while (n--) {
u8arr[n] = bstr.charCodeAt(n);
}
return new File([u8arr], `${filename}.${suffix}`, {
type: mime,
});
};
const getImageBase64 = () => {
const scale = canvas.width / clipData.img_width;
const imageData = ctx?.getImageData(
clipData.left * scale,
clipData.top * scale,
clipData.width * scale,
clipData.height * scale
);
const base64 = canvasImageDataToBase64(imageData);
return base64;
};
const getImageFile = () => {
const base64 = getImageBase64();
const file = base64toFile(base64, "image.png");
return file;
};
// 移动裁剪框
const clipMousedown = (e: MouseEvent | TouchEvent) => {
e.preventDefault();
var pageX = 0;
var pageY = 0;
if (e.type == "touchstart") {
const touch = e["touches"][0];
pageX = touch.pageX;
pageY = touch.pageY;
} else {
pageX = e["pageX"];
pageY = e["pageY"];
}
const elInfo = box.value.getBoundingClientRect();
const clipInfo = clipRef.value.getBoundingClientRect();
// 鼠标相对元素的位置
const CX = pageX - clipInfo.x;
const CY = pageY - clipInfo.y;
const mousemove = (e: MouseEvent | TouchEvent) => {
e.preventDefault();
var pageX = 0;
var pageY = 0;
if (e.type == "touchmove") {
const touch = e["touches"][0];
pageX = touch.pageX;
pageY = touch.pageY;
} else {
pageX = e["pageX"];
pageY = e["pageY"];
}
let x = pageX - elInfo.x - CX;
let y = pageY - elInfo.y - CY;
if (x < 0) {
x = 0;
} else if (x > elInfo.width - clipInfo.width) {
x = elInfo.width - clipInfo.width;
}
if (y < 0) {
y = 0;
} else if (y > elInfo.height - clipInfo.height) {
y = elInfo.height - clipInfo.height;
}
clipData.top = y;
clipData.left = x;
clipData.img_width = elInfo.width;
clipData.img_height = elInfo.height;
if (!el.value) return;
const elh = el.value.offsetHeight;
const elsh = el.value.scrollHeight;
const elst = el.value.scrollTop;
if (y < elst) {
el.value.scrollTop = y;
} else if (y + clipInfo.height > elst + elh) {
el.value.scrollTop = y + clipInfo.height - elh;
}
};
const mouseup = () => {
window.removeEventListener("mousemove", mousemove);
window.removeEventListener("mouseup", mouseup);
window.removeEventListener("touchmove", mousemove);
window.removeEventListener("touchend", mouseup);
};
if (e.type == "touchstart") {
window.addEventListener("touchmove", mousemove);
window.addEventListener("touchend", mouseup);
} else {
window.addEventListener("mousemove", mousemove);
window.addEventListener("mouseup", mouseup);
}
};
// 移动裁剪框的四个边框
const mousedown = (
e: MouseEvent | TouchEvent,
type: "top" | "bottom" | "right" | "left"
) => {
const minWidth = 20;
const minHeight = 20;
const elInfo = box.value.getBoundingClientRect();
const R = elInfo.width - clipData.left - clipData.width;
const B = elInfo.height - clipData.top - clipData.height;
const mousemove = (e: MouseEvent | TouchEvent) => {
var x = 0;
var y = 0;
if (e.type == "touchmove") {
const touch = e["touches"][0];
x = touch.pageX - elInfo.x;
y = touch.pageY - elInfo.y;
} else {
x = e["pageX"] - elInfo.x;
y = e["pageY"] - elInfo.y;
}
if (type == "right") {
let width = x - clipData.left;
if (width + clipData.left > elInfo.width) {
width = elInfo.width - clipData.left;
}
if (width < minWidth) width = minWidth;
clipData.width = width;
} else if (type == "bottom") {
let height = y - clipData.top;
if (height + clipData.top > elInfo.height) {
height = elInfo.height - clipData.top;
}
if (height < minHeight) height = minHeight;
clipData.height = height;
} else if (type == "left") {
let left = x;
let width = clipData.width;
if (left < 0) {
left = 0;
} else if (left > elInfo.width - R - minWidth) {
left = elInfo.width - R - minWidth;
}
width = elInfo.width - R - left;
clipData.left = left;
clipData.width = width;
clipData.img_width = elInfo.width;
clipData.img_height = elInfo.height;
} else if (type == "top") {
let top = y;
let height = clipData.height;
if (top < 0) {
top = 0;
} else if (top > elInfo.height - B - minHeight) {
top = elInfo.height - B - minHeight;
}
height = elInfo.height - B - top;
clipData.top = top;
clipData.height = height;
clipData.img_height = elInfo.height;
}
};
const mouseup = () => {
window.removeEventListener("mousemove", mousemove);
window.removeEventListener("mouseup", mouseup);
window.removeEventListener("touchmove", mousemove);
window.removeEventListener("touchend", mouseup);
};
if (e.type == "touchstart") {
window.addEventListener("touchmove", mousemove);
window.addEventListener("touchend", mouseup);
} else {
window.addEventListener("mousemove", mousemove);
window.addEventListener("mouseup", mouseup);
}
};
const topMousedown = (e: MouseEvent | TouchEvent) => {
mousedown(e, "top");
};
const rightMousedown = (e: MouseEvent | TouchEvent) => {
mousedown(e, "right");
};
const bottomMousedown = (e: MouseEvent | TouchEvent) => {
mousedown(e, "bottom");
};
const leftMousedown = (e: MouseEvent | TouchEvent) => {
mousedown(e, "left");
};
defineExpose({
open,
close,
});
</script>
<style scoped lang="less">
/* 弹窗遮罩层 */
.crop-image-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(255, 255, 255, 0.5);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
display: flex;
align-items: center;
justify-content: center;
z-index: 1001;
animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* 弹窗主体 */
.crop-image-modal {
background-color: #fff;
border-radius: 12px;
width: 80%;
height: 80%;
overflow: hidden;
display: flex;
flex-direction: column;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
animation: modalSlideUp 0.3s ease;
}
@keyframes modalSlideUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* 弹窗头部 */
.modal-header {
padding: 16px 20px;
background-color: rgba(255, 255, 255, 0.8);
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
display: flex;
justify-content: space-between;
align-items: center;
flex-shrink: 0;
h3 {
margin: 0;
font-size: 18px;
color: #333;
font-weight: 600;
}
}
.close-btn {
background: none;
border: none;
font-size: 24px;
cursor: pointer;
color: #666;
padding: 0;
line-height: 1;
opacity: 0.7;
transition: all 0.2s;
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
&:hover {
opacity: 1;
color: #333;
transform: scale(1.1);
}
}
/* 弹窗内容 */
.modal-content {
// padding: 20px;
overflow: hidden;
flex: 1;
background-color: #fff;
-webkit-overflow-scrolling: touch;
display: flex;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKAQMAAAC3/F3+AAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAGUExURf///9ra2sgNdccAAAARSURBVAjXY2A/wICMfjAgIwB8gwi84a8abQAAAABJRU5ErkJggg==);
}
.image-clip {
user-select: none;
flex: 1;
display: flex;
align-items: center;
justify-content: center;
> .box {
position: relative;
> img {
display: block;
width: 100%;
height: 100%;
}
> .shade {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.5);
}
> .clip {
position: absolute;
cursor: move;
outline: 1px solid #39f;
> * {
position: absolute;
}
> .img {
pointer-events: none;
width: 100%;
height: 100%;
overflow: hidden;
> img {
position: absolute;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKAQMAAAC3/F3+AAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAGUExURf///9ra2sgNdccAAAARSURBVAjXY2A/wICMfjAgIwB8gwi84a8abQAAAABJRU5ErkJggg==);
}
}
> .top {
cursor: n-resize;
}
> .bottom {
cursor: s-resize;
}
> .right {
cursor: e-resize;
}
> .left {
cursor: w-resize;
}
--border: 4px;
--trbl: calc(0px - var(--border) / 2);
--ball-size: 8px;
--ball-trbl: calc(0px - var(--ball-size) / 2);
> div.top {
top: var(--trbl);
left: 0;
right: 0;
height: var(--border);
}
> div.bottom {
bottom: var(--trbl);
left: 0;
right: 0;
height: var(--border);
}
> div.left {
top: 0;
left: var(--trbl);
bottom: 0;
width: var(--border);
}
> div.right {
top: 0;
right: var(--trbl);
bottom: 0;
width: var(--border);
}
> span {
position: absolute;
width: var(--ball-size);
height: var(--ball-size);
border-radius: 50%;
background-color: #39f;
}
> span.top {
top: var(--ball-trbl);
left: 50%;
transform: translateX(-50%);
}
> span.right {
right: var(--ball-trbl);
top: 50%;
transform: translateY(-50%);
}
> span.bottom {
bottom: var(--ball-trbl);
left: 50%;
transform: translateX(-50%);
}
> span.left {
left: var(--ball-trbl);
top: 50%;
transform: translateY(-50%);
}
}
}
}
/* 空状态 */
.empty-state {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 60px 20px;
color: #666;
min-height: 300px;
.empty-icon {
font-size: 48px;
margin-bottom: 16px;
opacity: 0.5;
}
p {
font-size: 16px;
margin: 0;
}
}
/* 弹窗底部 */
.modal-footer {
padding: 16px 20px;
background-color: rgba(255, 255, 255, 0.8);
border-top: 1px solid rgba(0, 0, 0, 0.05);
display: flex;
justify-content: space-between;
align-items: center;
flex-shrink: 0;
> .image-submit {
font-size: 1.2rem;
line-height: 4rem;
}
}
.image-count {
font-size: 14px;
color: #666;
font-weight: 500;
}
/* 响应式设计 */
@media screen and (max-width: 1024px) {
.crop-image-modal {
width: 95%;
max-width: 900px;
}
.modal-content {
padding: 16px;
}
.modal-header,
.modal-footer {
padding: 14px 16px;
}
}
@media screen and (max-width: 640px) {
.crop-image-modal {
width: 98%;
margin: 10px;
max-height: 90vh;
}
.modal-content {
padding: 12px;
gap: 16px;
}
.modal-header h3 {
font-size: 16px;
}
.image-categories {
gap: 8px;
padding-bottom: 8px;
}
.category-btn {
padding: 6px 12px;
font-size: 13px;
height: 32px;
}
}
</style>

View File

@@ -68,6 +68,12 @@
{{ t("Canvas.flipVertical") }}
</p>
</div>
<div class="btn" @click="clickCropImage(v)">
<i class="iconfont icon-caijian"></i>
<p class="tip">
{{ t("Canvas.cropAndAdd") }}
</p>
</div>
</div>
</div>
</div>
@@ -82,6 +88,7 @@
import { useI18n } from "vue-i18n";
import { ToolCommand } from "../commands/ToolCommands";
import { OperationType } from "../utils/layerHelper";
import { loadImageUrlToLayer } from "../utils/imageHelper";
import { TransformCommand } from "../commands/StateCommands";
const props = defineProps({
canvas: {
@@ -262,6 +269,21 @@
finalState.flipY = !finalState.flipY;
transformObject(obj, initialState, finalState);
};
// 裁剪图片
const cropImage = inject("cropImage");
const clickCropImage = async (obj) => {
const base64 = await props.layerManager.getLayerToBase64(obj.layerId);
if(base64) cropImage(base64).then((res) => {
loadImageUrlToLayer({
imageUrl: res,
layerManager: props.layerManager,
canvas: props.canvas,
toolManager: props.toolManager,
}).then(res=>{
console.log("========",res);
});
});
};
const updateActiveObjects = (arrs, keys) => {
arrs.forEach((v) => {

View File

@@ -23,6 +23,7 @@ import { BrushStore } from "./store/BrushStore";
import cuowuImg from "@/assets/images/homePage/cuowu.svg";
import { Https } from "@/tool/https";
import SelectImages from "@/component/common/SelectImages.vue";
import CropImage from "./components/CropImage.vue";
import { UrlToFile } from "@/tool/util";
// import { MinimapManager } from "./managers/minimap/MinimapManager";
@@ -907,6 +908,12 @@ const changeCanvas = async (command) => {
}
};
const cropImageRef = ref(null);
const cropImage = (url) => {
return cropImageRef.value.open(url)
};
provide("cropImage", cropImage); // 提供给子组件使用
// 提供外部ref实例方法
defineExpose({
layers, // 图层数据
@@ -1249,6 +1256,9 @@ defineExpose({
/>
</div>
</transition>
<!-- 裁剪图片组件 -->
<CropImage ref="cropImageRef" />
</div>
<!-- <div class="footer-actions">

View File

@@ -3200,6 +3200,49 @@ export class LayerManager {
}
}
/**
* 栅格化图层并返回Base64编码
* @param {string} layerId 图层ID默认使用当前活动图层
* @returns {Promise<string|null>} Base64编码的图像字符串失败时返回null
*/
async getLayerToBase64(layerId = null) {
const targetLayerId = layerId || this.activeLayerId.value;
if (!targetLayerId) {
console.warn(this.t("没有指定要栅格化的图层"));
return null;
}
// 查找目标图层
// const targetLayer = this.getLayerById(targetLayerId);
const { layer: targetLayer } = findLayerRecursively(
this.layers.value,
targetLayerId
);
if (!targetLayer) {
console.error(this.t("图层不存在", { layerId: targetLayerId }));
return null;
}
// 直接创建和执行导出命令
const command = new ExportLayerToImageCommand({
canvas: this.canvas,
layers: this.layers,
layerId: targetLayerId,
activeLayerId: this.activeLayerId,
layerManager: this,
});
command.undoable = false; // 导出操作通常不需要撤销
// 执行命令
const result = await command.execute(false);
if (result) {
console.log(`✅ 成功导出图层: ${targetLayer.name}`);
}
return result;
}
/**
* 为组图层的活动选择组设置遮罩移动同步(修复版)
* @param {fabric.ActiveSelection} activeSelection 活动选择组

View File

@@ -1225,7 +1225,9 @@ export default {
basic: '基础',
flipHorizontal: '水平翻转',
flipVertical: '垂直翻转',
group: '组合',
cropAndAdd: '裁剪并添加',
cropImage: '裁剪图片',
group: '组合',
//长毛笔
FurSettings: '长毛笔设置',
FurLength: '毛发长度',

View File

@@ -1260,7 +1260,9 @@ export default {
basic: 'Basic',
flipHorizontal: 'Horizontal Flip',
flipVertical: 'Vertical Flip',
group: 'Group',
cropAndAdd: 'Crop and Add',
cropImage: 'Crop Image',
group: 'Group',
//长毛笔
FurSettings: 'FurSettings',
FurLength: 'Fur Length',