svgwrite로 기존 svg를 가져오는 방법 - Python (How to import an existing svg with svgwrite - Python)


문제 설명

svgwrite로 기존 svg를 가져오는 방법 ‑ Python (How to import an existing svg with svgwrite ‑ Python)

기존 svg 사진을 가져와서 원 및 사각형과 같은 요소를 추가해야 합니다. 내 파일은 'test.svg'이므로 dwg = svgwrite.Drawing('test.svg') 를 시도했지만 아무 것도 없이 새 svg 파일을 만듭니다. 저는 python lib svgwrite를 사용합니다. 저에게 어떤 생각이 있으신가요? 감사합니다. 제 영어에 대해 죄송합니다... 최선을 다하겠습니다!


참조 솔루션

방법 1:

svgwrite will only create svg files. svgwrite does not read svg files. If you want to read, modify and then write the svg, the svgwrite package is not the package to use but I do not know of an appropriate package for you.

It might be possible to create svg which uses a reference to another image. That is there is one svg which you then put a second svg on top of the first. I have not done this and do not know if it would actually work.

(by Chilipunchcard)

참조 문서

  1. How to import an existing svg with svgwrite ‑ Python (CC BY‑SA 2.5/3.0/4.0)

#svg #Python #svgwrite






관련 질문

D3/SVG: 범위를 수정하여 시간 척도로 d3.svg.axis의 크기를 조정하는 방법은 무엇입니까? (D3/SVG: How to resize a d3.svg.axis with time scale by modifying range?)

d3 SVG의 드롭다운 메뉴 (Drop down menu over d3 SVG)

단색 배경의 SVG 투명도 (SVG transparency on a solid background)

그룹을 번역할 때 이미지가 포함된 SVG 채우기가 작동하지 않음 (SVG fill with image not working when translate the group)

프로그래밍 방식으로 SVG 파일의 변환을 병합하는 방법은 무엇입니까? (How to flatten transforms in an SVG file programmatically?)

Jquery/Javascript - SVG를 클릭할 때 IE에서 요소 외부 클릭 감지가 실패함 (Jquery/Javascript - Detecting a click outside an element fails on IE when clicking an SVG)

snap.svg에서 그룹의 요소/자식을 반복하는 방법은 무엇입니까? (How to iterate on a group's elements/children in snap.svg?)

svgwrite로 기존 svg를 가져오는 방법 - Python (How to import an existing svg with svgwrite - Python)

SVG로 사실적인(정현파) 플래그 애니메이션/플러터 만들기 (Making realistic (sinusoid) flag animation / flutter with SVG)

javascript/svg에서 호로 양면이 있는 상자 그리기 (Drawing a box with two sides as an Arc in javascript/svg)

요소를 제외한 SVG 마우스 이벤트 통과 (SVG Mouse Event Passthrough except for elements)

단일 svg 요소를 만들기 위해 여러 모양 병합 (Merging number of shapes to make a single svg element)







코멘트