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
Caused by #447 (comment)
It is needed to decide how to create PNG versions of SVG to be used in docs (because GitBook does not support SVG).
Currently it is done with a screenshot from mermaid view, but it does not scale and can not be integrated in the CI.
The text was updated successfully, but these errors were encountered:
alternatives from #447 (comment)
ImageMagick
convert \ docs/assets/lookout-sdk-seq-diagram.svg lookout-sdk-seq-diagram.png
@carlosms said at #447 (comment)
(this way) they look worse, the text typography or kerning makes it harder to read.
There are some other alternatives, that render better PNGs (specially CairoSVG), but we should find the better options to do it.
svgexport
$ svgexport docs/assets/lookout-sdk-seq-diagram.svg \ docs/assets/lookout-sdk-seq-diagram.png \ "svg{background:white;}"
Inkscape
$ inkscape -z -e docs/assets/lookout-sdk-seq-diagram.png \ --export-background white \ docs/assets/lookout-sdk-seq-diagram.svg
CairoSVG
$ cairosvg -f png --output-width 900 \ --output docs/assets/lookout-sdk-seq-diagram.png \ docs/assets/lookout-sdk-seq-diagram.svg
Sorry, something went wrong.
No branches or pull requests
Caused by #447 (comment)
It is needed to decide how to create PNG versions of SVG to be used in docs (because GitBook does not support SVG).
Currently it is done with a screenshot from mermaid view, but it does not scale and can not be integrated in the CI.
The text was updated successfully, but these errors were encountered: