-
-
Notifications
You must be signed in to change notification settings - Fork 223
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
Drawio - Add resolution of external image to get self contained SVG #1771
base: main
Are you sure you want to change the base?
Conversation
await writeFile("before.svg", svgRoot) | ||
await writeFile("after.svg", $("svg").toString()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess this was for testing purpose?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes I will remove it
@@ -27,6 +29,32 @@ export class Worker { | |||
this.convertTimeout = process.env.KROKI_DIAGRAMSNET_CONVERT_TIMEOUT || '15000' | |||
} | |||
|
|||
async resolveImage(svgRoot) { | |||
let $ = cheerio.load(svgRoot, { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since we are using Puppeteer we could potentially parse/edit the SVG in page.evaluate
? That would remove the dependency on cheerio
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Definitely I am not a JS expert I will check to change it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you find a way to implement this feature without relying on cheerio? I can take a look if you want?
Someone mentioned in the community chat that diagrams.net has an "embed" feature: https://www.drawio.com/doc/faq/embed-mode It might be possible to rely on the query parameter |
@jynolen could you please share an example with external images? I want to test if |
Here you are 👍 https://gist.github.com/jynolen/05f48d96f09cfdffd9bcf6b99b91256f |
It's not as easy as I thought since it relies on a proxy: #1796 As this adds an attack vector, I think it would be preferable to enable this feature when Kroki safe mode is set to |
This PR help to keep drawio svg self contained.
Background
I use SelfHosted Kroki with antora doc generator
When using drawio diagrams it happned that some part of the diagr was missing because it relies on external images.
What have been done:
With this PR, during the rendering phase, kroki will retreive external image to embed them as base64 src.
This way diagrram will be rendered correctly whenever and wherever