I get the following error message when trying to get a png from a tikzipicture.
This is my code simplifyed code (without the actual data)
\documentclass[convert]{standalone}
\usepackage{pgfplots}
\usepackage{graphicx}
\usepackage{booktabs}
\usepackage{pgfplotstable}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
xlabel=Number of doctors, % label x axis
ylabel=Number of MPA, % label y axis
axis lines=left, %set the position of the axes
legend style={at={(1,1)},anchor=north east},
]
\end{axis}
\end{tikzpicture}
\end{document}
Thanks for any help!!


convertor with the newmagick convert? Try outconvert --helpon a command line to find out. In my case I have the oldconvertand then so I had to use\documentclass[convert={convertexe=convert}]{standalone}– Ulrike Fischer Jun 05 '18 at 08:35convert={convertexe=convert}? – Ulrike Fischer Jun 08 '18 at 07:52