Overleaf - ダウンロードした PDF には、PNG では表示されない図の線が表示されます

Overleaf - ダウンロードした PDF には、PNG では表示されない図の線が表示されます

私はこの.png図を持っています

ここに画像の説明を入力してください

次のコードでOverleafにアップロードすると

\begin{figure}
\centering
\subfloat{
\begin{tikzpicture}
    \node[anchor=south west,inner sep=0] (image) at (0,0) {\includegraphics[width=0.95\columnwidth,trim={0.05cm 0.2cm 0 0},clip]{figures/intro.png}};
\end{tikzpicture}}
\caption{}
\label{fig:intro}
\end{figure}

そして私の論文の PDF をダウンロードすると、図にこれが表示されます。

ここに画像の説明を入力してください

ラテックスに線をレンダリングしないように指示するにはどうすればいいでしょうか? 例

\begin{figure}
\centering
\subfloat{
\begin{tikzpicture}
    \node[anchor=south west,inner sep=0] (image) at (0,0) {\includegraphics[width=0.95\columnwidth,trim={0.05cm 0.2cm 0 0},clip]{figures/intro.png}};
\end{tikzpicture}}
\do_not_render_lines
\caption{}
\label{fig:intro}
\end{figure}

関連情報