Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extract SVG images #3

Open
marianna13 opened this issue Oct 21, 2023 · 1 comment
Open

Extract SVG images #3

marianna13 opened this issue Oct 21, 2023 · 1 comment

Comments

@marianna13
Copy link
Owner

marianna13 commented Oct 21, 2023

from svg.path import parse_path, Line
from xml.dom import minidom
from cairosvg import svg2png


def get_xy(z):
  return z.real, z.imag

svg = page.get_svg_image()
svg_doc = minidom.parseString(svg)

for use in svg_doc.getElementsByTagName('use'):
  use.parentNode.removeChild(use)

for path in svg_doc.getElementsByTagName('path'):
    d = path.getAttribute('fill')

    if path.getAttribute('id'):
      path.parentNode.removeChild(path)

svg_root = svg_doc.getElementsByTagName('svg')[0]
w, h = svg_root.getAttribute('width'), svg_root.getAttribute('height')
w = float(w.replace('pt', ''))
h = float(h.replace('pt', ''))

svg_str = str(BeautifulSoup(svg_doc.toxml(), 'lxml').find('svg'))

img = svg2png(file_obj=io.StringIO(svg_str), output_width=w, output_height=h, dpi=90)

img = np.array(Image.open(io.BytesIO(img)))

x, y = np.where(img[:, :, 0]!=0) # coordinates of SVG images
@marianna13
Copy link
Owner Author

get_drawings should extract SVG like page.get_svg_image()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant