fix offsets
This commit is contained in:
parent
f444383b46
commit
d308451584
@ -464,27 +464,6 @@ const renderElementToSvg = (
|
|||||||
use.setAttribute("filter", IMAGE_INVERT_FILTER);
|
use.setAttribute("filter", IMAGE_INVERT_FILTER);
|
||||||
}
|
}
|
||||||
|
|
||||||
use.setAttribute("width", `${width}`);
|
|
||||||
use.setAttribute("height", `${height}`);
|
|
||||||
use.setAttribute("opacity", `${opacity}`);
|
|
||||||
|
|
||||||
// We first apply `scale` transforms (horizontal/vertical mirroring)
|
|
||||||
// on the <use> element, then apply translation and rotation
|
|
||||||
// on the <g> element which wraps the <use>.
|
|
||||||
// Doing this separately is a quick hack to to work around compositing
|
|
||||||
// the transformations correctly (the transform-origin was not being
|
|
||||||
// applied correctly).
|
|
||||||
if (element.scale[0] !== 1 || element.scale[1] !== 1) {
|
|
||||||
const translateX = element.scale[0] !== 1 ? -width : 0;
|
|
||||||
const translateY = element.scale[1] !== 1 ? -height : 0;
|
|
||||||
use.setAttribute(
|
|
||||||
"transform",
|
|
||||||
`scale(${element.scale[0]}, ${element.scale[1]}) translate(${translateX} ${translateY})`,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
const g = svgRoot.ownerDocument!.createElementNS(SVG_NS, "g");
|
|
||||||
|
|
||||||
let normalizedCropX = 0;
|
let normalizedCropX = 0;
|
||||||
let normalizedCropY = 0;
|
let normalizedCropY = 0;
|
||||||
|
|
||||||
@ -497,10 +476,33 @@ const renderElementToSvg = (
|
|||||||
element.crop.y / (element.crop.naturalHeight / uncroppedHeight);
|
element.crop.y / (element.crop.naturalHeight / uncroppedHeight);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (element.crop) {
|
const adjustedCenterX = cx + normalizedCropX;
|
||||||
use.setAttribute("width", `100%`);
|
const adjustedCenterY = cy + normalizedCropY;
|
||||||
use.setAttribute("height", `100%`);
|
|
||||||
|
|
||||||
|
use.setAttribute("width", `${width + normalizedCropX}`);
|
||||||
|
use.setAttribute("height", `${height + normalizedCropY}`);
|
||||||
|
use.setAttribute("opacity", `${opacity}`);
|
||||||
|
|
||||||
|
// We first apply `scale` transforms (horizontal/vertical mirroring)
|
||||||
|
// on the <use> element, then apply translation and rotation
|
||||||
|
// on the <g> element which wraps the <use>.
|
||||||
|
// Doing this separately is a quick hack to to work around compositing
|
||||||
|
// the transformations correctly (the transform-origin was not being
|
||||||
|
// applied correctly).
|
||||||
|
if (element.scale[0] !== 1 || element.scale[1] !== 1) {
|
||||||
|
use.setAttribute(
|
||||||
|
"transform",
|
||||||
|
`translate(${adjustedCenterX} ${adjustedCenterY}) scale(${
|
||||||
|
element.scale[0]
|
||||||
|
} ${
|
||||||
|
element.scale[1]
|
||||||
|
}) translate(${-adjustedCenterX} ${-adjustedCenterY})`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const g = svgRoot.ownerDocument!.createElementNS(SVG_NS, "g");
|
||||||
|
|
||||||
|
if (element.crop) {
|
||||||
const mask = svgRoot.ownerDocument!.createElementNS(SVG_NS, "mask");
|
const mask = svgRoot.ownerDocument!.createElementNS(SVG_NS, "mask");
|
||||||
mask.setAttribute("id", `mask-image-crop-${element.id}`);
|
mask.setAttribute("id", `mask-image-crop-${element.id}`);
|
||||||
mask.setAttribute("fill", "#fff");
|
mask.setAttribute("fill", "#fff");
|
||||||
@ -508,6 +510,7 @@ const renderElementToSvg = (
|
|||||||
SVG_NS,
|
SVG_NS,
|
||||||
"rect",
|
"rect",
|
||||||
);
|
);
|
||||||
|
|
||||||
maskRect.setAttribute("x", `${normalizedCropX}`);
|
maskRect.setAttribute("x", `${normalizedCropX}`);
|
||||||
maskRect.setAttribute("y", `${normalizedCropY}`);
|
maskRect.setAttribute("y", `${normalizedCropY}`);
|
||||||
maskRect.setAttribute("width", `${width}`);
|
maskRect.setAttribute("width", `${width}`);
|
||||||
@ -523,7 +526,7 @@ const renderElementToSvg = (
|
|||||||
"transform",
|
"transform",
|
||||||
`translate(${offsetX - normalizedCropX} ${
|
`translate(${offsetX - normalizedCropX} ${
|
||||||
offsetY - normalizedCropY
|
offsetY - normalizedCropY
|
||||||
}) rotate(${degree} ${cx + normalizedCropX} ${cy + normalizedCropY})`,
|
}) rotate(${degree} ${adjustedCenterX} ${adjustedCenterY})`,
|
||||||
);
|
);
|
||||||
|
|
||||||
if (element.roundness) {
|
if (element.roundness) {
|
||||||
|
@ -10,5 +10,5 @@ exports[`export > exporting svg containing transformed images > svg export outpu
|
|||||||
</style>
|
</style>
|
||||||
|
|
||||||
</defs>
|
</defs>
|
||||||
<clipPath id="image-clipPath-id1" data-id="id1"><rect width="100" height="100" rx="25" ry="25"></rect></clipPath><g transform="translate(30.710678118654755 30.710678118654755) rotate(315 50 50)" clip-path="url(#image-clipPath-id1)" data-id="id1"><use href="#image-file_A" width="100" height="100" opacity="1"></use></g><clipPath id="image-clipPath-id2" data-id="id2"><rect width="50" height="50" rx="12.5" ry="12.5"></rect></clipPath><g transform="translate(130.71067811865476 30.710678118654755) rotate(45 25 25)" clip-path="url(#image-clipPath-id2)" data-id="id2"><use href="#image-file_A" width="50" height="50" opacity="1" transform="scale(-1, 1) translate(-50 0)"></use></g><clipPath id="image-clipPath-id3" data-id="id3"><rect width="100" height="100" rx="25" ry="25"></rect></clipPath><g transform="translate(30.710678118654755 130.71067811865476) rotate(45 50 50)" clip-path="url(#image-clipPath-id3)" data-id="id3"><use href="#image-file_A" width="100" height="100" opacity="1" transform="scale(1, -1) translate(0 -100)"></use></g><clipPath id="image-clipPath-id4" data-id="id4"><rect width="50" height="50" rx="12.5" ry="12.5"></rect></clipPath><g transform="translate(130.71067811865476 130.71067811865476) rotate(315 25 25)" clip-path="url(#image-clipPath-id4)" data-id="id4"><use href="#image-file_A" width="50" height="50" opacity="1" transform="scale(-1, -1) translate(-50 -50)"></use></g></svg>"
|
<clipPath id="image-clipPath-id1" data-id="id1"><rect width="100" height="100" rx="25" ry="25"></rect></clipPath><g transform="translate(30.710678118654755 30.710678118654755) rotate(315 50 50)" clip-path="url(#image-clipPath-id1)" data-id="id1"><use href="#image-file_A" width="100" height="100" opacity="1"></use></g><clipPath id="image-clipPath-id2" data-id="id2"><rect width="50" height="50" rx="12.5" ry="12.5"></rect></clipPath><g transform="translate(130.71067811865476 30.710678118654755) rotate(45 25 25)" clip-path="url(#image-clipPath-id2)" data-id="id2"><use href="#image-file_A" width="50" height="50" opacity="1" transform="translate(25 25) scale(-1 1) translate(-25 -25)"></use></g><clipPath id="image-clipPath-id3" data-id="id3"><rect width="100" height="100" rx="25" ry="25"></rect></clipPath><g transform="translate(30.710678118654755 130.71067811865476) rotate(45 50 50)" clip-path="url(#image-clipPath-id3)" data-id="id3"><use href="#image-file_A" width="100" height="100" opacity="1" transform="translate(50 50) scale(1 -1) translate(-50 -50)"></use></g><clipPath id="image-clipPath-id4" data-id="id4"><rect width="50" height="50" rx="12.5" ry="12.5"></rect></clipPath><g transform="translate(130.71067811865476 130.71067811865476) rotate(315 25 25)" clip-path="url(#image-clipPath-id4)" data-id="id4"><use href="#image-file_A" width="50" height="50" opacity="1" transform="translate(25 25) scale(-1 -1) translate(-25 -25)"></use></g></svg>"
|
||||||
`;
|
`;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user