TikZでblueで描いたときにTeX2imgで作る画像がクリッピング(トリミング)されない現象が出ていた。 Ghostscriptを9.14から9.16にバージョンアップしたら直った。
$ tex2img --version
tex2img Ver.1.9.2
$ tex2img sample.tex sample.png
\documentclass[dvipdfmx]{jsarticle}
\usepackage{tikz}
\pagestyle{empty}
\begin{document}
\begin{tikzpicture}
% \draw[blue] (0,0) -- (1,1); % (1. blue)
\draw[black] (0,0) -- (1,1); % (2. black)
\end{tikzpicture}
\end{document}
blue
の部分がgray
ならば正しくクリッピングされ、red
でもクリッピングされます。
$ brew upgrade gs