el 04-05-2024 04:42 PM
¡Hola!
Estoy trabajando con un sistema de visión pero el formato que me da es .SVG y de acuerdo a lo que he investigado no se puede cambiar.
¿Alguien sabe cómo podría hacer la conversión de .SVG a .BMP en LabView o LabWindows CVI?
¡Saludos!
el 04-10-2024 06:09 PM
Es probable que se pueda hacer con alguna libreria disponible via Command Line (System Exec.vi), C (Call Library Function Node) , o Python (Python Node) .
Here are some libraries and tools that can be used to convert SVG files to PNG or BMP:
Python Libraries:
C Libraries:
Command Line Tools:
convert input.svg output.png
.inkscape -z -e output.png input.svg
.Please note that you’ll need to install these libraries or tools before you can use them, and the exact commands or code you’ll need to use will depend on the library or tool. Always refer to the official documentation for the most accurate and up-to-date information. Also, remember to handle the file paths and other parameters carefully to avoid any security issues.