How to convert svg to png image?

Hi ! What’s the simplest way to convert a svg to png image ?
Thanks

Here are a few solutions that come to mind:

Third-Party API

You could use a service to upload and download the converted image. This approach avoids the need to install additional software on your server.

Installing a File Converter Tool

Since the Execute Command node allows you to run CLI commands, you can:

  1. Install a file converter shell tool.
  2. Use the Read/Write File node to write the file to disk.
  3. Execute the CLI command to convert the file.
  4. Read the converted file back into the workflow.

Custom Node

Another option is to develop or use a custom node. The closest match I found is this one:

.
:point_right: If my reply answers your question, please remember to mark it as a solution.

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.