We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
The text was updated successfully, but these errors were encountered:
get_drawings should extract SVG like page.get_svg_image()
get_drawings
page.get_svg_image()
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: