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";
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"); }) }, ``