I am trying to convert a TikZ file to png following this answer to a similiar question: TikZ to non-PDF.
This is a mwe:
\documentclass[convert={density=300,size=1080x800,outext=.png}]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw [step=0.5] (-1.4,-1.4) grid (1.4,1.4);
\end{tikzpicture}
\end{document}
In my log file I get the following error message:
(Ext.aux)
runsystem(imgconvert -density 300 Ext.pdf -resize 1080x800 -quality 90
Ext.png)
...executed.
Class standalone Warning: Conversion unsuccessful!
(standalone) There might be something wrong with your
(standalone) conversation software or the file permissions!
) )
My version of the standalone package:
Document Class: standalone 2015/07/15 v1.2 Class to compile TeX sub-files stand alone
I compiled it with the following command
pdflatex -shell-escape -synctex=1 -interaction=nonstopmode Ext.tex
I installed ImageMagick-7.0.7-Q16, it is installed under: C:\Program Files\ImageMagick-7.0.7-Q16
Do I have to somehow set some path-variable? I can't find anything online where I am told that I have to set the path variable.