I tried to use svg2css inkscape extension in python, which converts an svg file to its equivalent css+html, but it resulted in no output with a warning message:
Source file C:\WINDOWS\Temp\ink_ext_XXXXXX.svg9EFDKV not an SVG. My svg file is very simple, it just contains one text tag, I tried to generate the css+html from these svg formats:
- plain svg
- inkscape svg
- optimized svg
but all of these resluted in no output with same error message.
This is the Error Log file generated in \Users\staff\Application Data\inkscape:
Extension "Dia Input" failed to load because a dependency was not met.
Dependency:
type: executable
location: extensions
string: dia2svg.sh
description: The dia2svg.sh script should be installed with your Inkscape distribution. If you do not have it, there is likely to be something wrong with your Inkscape installation.
Extension "Dia Input" failed to load because a dependency was not met. Dependency: type: executable location: path string: dia description: In order to import Dia files, Dia itself must be installed. You can get Dia at http://live.gnome.org/Dia
Extension "DXF Output" failed to load because a dependency was not met. Dependency: type: executable location: extensions string: ps2dxf.sh
Extension "DXF Output" failed to load because a dependency was not met. Dependency: type: executable location: path string: pstoedit description: pstoedit must be installed to run; see http://www.pstoedit.net/pstoedit
Extension "LaTeX formula" failed to load because a dependency was not met. Dependency: type: executable location: path string: pstoedit
Extension "XFIG Input" failed to load because a dependency was not met. Dependency: type: executable location: path string: fig2dev
Extension "GIMP XCF" failed to load because a dependency was not met. Dependency: type: executable location: path string: gimp
Extension "Text Outline Input" failed to load because a dependency was not met. Dependency: type: executable location: path string: perl
Extension "Sketch Input" failed to load because a dependency was not met. Dependency: type: executable location: extensions string: sk2svg.sh
Extension "Sketch Input" failed to load because a dependency was not met. Dependency: type: executable location: path string: skconvert
Extension "Text Input" failed to load because a dependency was not met.
Dependency:
type: executable
location: path
string: perl
NOW ,After download and installing some requirements mentioned in the error log file, this became my new error log file:
Extension "Sketch Input" failed to load because a dependency was not met.
Dependency:
type: executable
location: path
string: skconvert
Extension "LaTeX Input" failed to load because a dependency was not met. Dependency: type: extension location: extensions string: org.inkscape.input.sk
I don't know why, could any one help me?