Files
dont-panic/artikel/make-email-as-png.tex
T
2021-08-05 15:57:05 +02:00

19 lines
494 B
TeX

\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{external}
\tikzexternalize[only named]
\tikzset{
export as png/.style={
external/system call/.add={}{
&& convert -density #1 -transparent white "\image.pdf" "\image.png"
},
},
export as png/.default={200},
}
\begin{document}
\tikzset{export as png=500}
\tikzsetnextfilename{email-png}
\begin{tikzpicture}
\node {fsinf@uni-frankfurt.de};
\end{tikzpicture}
\end{document}