背面 - 下載的 pdf 顯示圖形上在 png 中不可見的線條

背面 - 下載的 pdf 顯示圖形上在 png 中不可見的線條

我有這個.png圖

在此輸入影像描述

當我使用以下程式碼將其上傳到背頁時

\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}

相關內容