lipme / vue-phylogram

Vue component for displaying phylogenetic trees
Apache License 2.0
5 stars 0 forks source link

Suggestions for downloading the phylogram image #6

Open fraser-combe opened 2 years ago

fraser-combe commented 2 years ago

Do you have any suggestions on how to download the phylogram image as a PNG or other.

I have tried html-to-image however it does not render the whole image, so I hoped you may have some previous packages you know that work for this object within a v-card

I have tried this so far `` import * as htmlToImage from "html-to-image"; import { saveAs } from "file-saver";

htmlToImage() { toBlob(document.getElementById("vuePhylogram")) .then(function (blob) { saveAs(blob, "screenshot.png"); }) }, ``