I generated an image with tikz which consists in an external image and a series of labels.
I tried to convert it in .eps format by following the procedure presented here Export eps figures from TikZ. As result the .pdf image is good while I have a huge quality degradation in the .eps file.
In the preamble I included the following lines
\usetikzlibrary{external}
\tikzset{external/system call={pdflatex \tikzexternalcheckshellescape -halt-on-error
-interaction=batchmode -jobname "\image" "\texsource";
pdftops -eps "\image".pdf;
ps2eps "\image.ps"}}
\tikzexternalize
and then I run the command
latex --shell-escape
Here a complete example of the code
\documentclass[]{article}
\usepackage{amsmath,bm}
\usepackage{amssymb}
\usepackage{esint}
\usepackage{tabularx}
\usepackage{graphicx}
\usepackage{tikz}
\usepackage{color}
\usepackage{tikzscale}
\usetikzlibrary{external}
\tikzset{external/system call={pdflatex \tikzexternalcheckshellescape -halt-on-error
-interaction=batchmode -jobname "\image" "\texsource";
pdftops -eps "\image".pdf;
ps2eps "\image.ps"}}
\tikzexternalize
\begin{document}
\begin{figure*}
\begin{tikzpicture}
\node {\includegraphics[scale=0.15]{circle}};
\node {$\mathcal{SSSSSSSS}_1$};
\end{tikzpicture}
\end{figure*}
\end{document}
Original:
And here the .pdf and .eps images



huge quality degradationactually means. All in all, it wopuld be better if you provided a full example that others can copy and which gives the quality problem on your system, then others can try it on their own separate systems – daleif Aug 11 '21 at 10:01circle? I'd say the circle image is irrelevant, the image should just be the SSS part – daleif Aug 11 '21 at 10:29