In my experience with eps exports from tikz, I haven't exactly been pleased with the results. Mostly if I need vector graphics from tikz, I compile to pdf and use that (or convert to svg, e.g. with Inkscape).
If you simply need an image, you can convert to png with ImageMagick.
For my own purposes I have created an ImageExport.tex file:
%% Usage for eps-pictures
% Warning: Quality of text seems to be awful with eps...
% Use this documentclass instead of the one below
% \documentclass{standalone}
% Step 1: Include the tikzpicture below, adjust the used packages if needed
% Step 2: Compile to standard pdf, you should receive the image as pdf cropped to the drawing
% Step 3: Run `pdftops -eps ImageExport.pdf`
% Step 4: Rename the resulting eps file accordingly, use it!
% If some app doesn't want to include the graphic correctly, try running `pdftops -level1 -eps ImageExport.pdf` or `pdftops -level2 -eps ImageExport.pdf`
%% Usage for png-pictures
% Needs ImageMagick (http://www.imagemagick.org/script/index.php) and for Windows also Ghostscript (http://ghostscript.com/download/gsdnld.html, 32bit)
% Step 1: Include the tikzpicture below, adjust the used packages if needed
% Step 2: Compile like always but be sure to use the `--shell-escape` option. Ignore errors like "Undefined control sequence \HyperFirstAtBeginDocument"
% Step 3: Rename the resulting png file accordingly, use it!
\documentclass[convert={convertexe={magick}}]{standalone}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\usetikzlibrary{positioning,fit,calc,...}
\begin{document}
\input{my/tikz/graphic.tex}
\end{document}
qtikzwould do the job. Not sure whether this is available for Apple (which I believe TeXstudio is?). If so, this may help as well. – vaettchen Jan 08 '18 at 10:20latex-->dvi-->eps? – Zarko Jan 08 '18 at 10:52.tex--pdflatex-->.pdf--pdftops-->.eps? – Paul Gaborit Jan 08 '18 at 14:48