從 Tikz ClipPicture 擷取內部部分

從 Tikz ClipPicture 擷取內部部分

考慮 MWE:

\documentclass{article}
    \usepackage{tikz}
    \usepackage{graphicx}

% % COMPILED WITH PDFLATEX

    \newif\ifdeveloppath
    \tikzset{/tikz/develop clipping path/.is if=developpath,
      /tikz/develop clipping path=true}

    \newcommand{\clippicture}[2]{
      \begin{tikzpicture}
      \ifdeveloppath
      \node[anchor=south west,inner sep=0] (image) at (0,0) {\includegraphics[width=1.0\linewidth,keepaspectratio]{example-image-a}};
    \else
      \node[anchor=south west,inner sep=0] (image) at (0,0) {\phantom{\includegraphics[width=1.0\linewidth,keepaspectratio]{example-image-a}}};
    \fi
    \pgfresetboundingbox
    \begin{scope}[x={(image.south east)},y={(image.north west)}]
      % Draw grid 
      \ifdeveloppath
        \draw[help lines,xstep=.02,ystep=.02] (0,0) grid (1,1);
        \foreach \x in {0,1,...,9} { \node [anchor=north] at (\x/10,0) {0.\x}; }
        \foreach \y in {0,1,...,9} { \node [anchor=east] at (0,\y/10) {0.\y}; }
        \draw[red, ultra thick] #2 -- cycle;
      \else
        % Use the path to clip
        \path[clip] #2 -- cycle;
        \node[anchor=south west,inner sep=0pt] {\includegraphics[width=1.0\linewidth,keepaspectratio]{example-image-a}};
      \fi
    \end{scope}
    \end{tikzpicture}
    }

\begin{document}
\thispagestyle{empty}

     \clippicture{[width=1.0\textwidth]{some-image}}{(0.359,0.268) -- (0.48,0.73) -- (0.52,0.73) -- (0.64,0.27) -- (0.60,0.27) -- (0.562,0.403) -- (0.43,.403) -- (0.395, 0.268) -- (0.359,0.268)}

\newpage
\thispagestyle{empty}

    \tikzset{develop clipping path=false}

\begin{center}
    \clippicture{[width=1.0\textwidth]{some-image}}{(0.359,0.268) -- (0.48,0.73) -- (0.52,0.73) -- (0.64,0.27) -- (0.60,0.27) -- (0.562,0.403) -- (0.43,.403) -- (0.395, 0.268) -- (0.359,0.268)}
\end{center}
\end{document}

輸出:

在此輸入影像描述

在此輸入影像描述

問題:我的剪下路徑是閉合電路;所以,輸出就是資本的外部部分A。我怎樣才能完成這封信的提取A通過——也剪掉——字母的適當內部部分A

謝謝。

答案1

將“A”的內三角形逆時針加到(使用“非零規則”)到您的路徑中,使其:

(0.359,0.268) -- (0.48,0.73) -- (0.52,0.73) -- (0.64,0.27) -- (0.60,0.27) -- (0.562,0.403) -- (0.43,.403) -- (0.395, 0.268) -- (0.359,0.268) (0.440,0.438) -- (0.555,0.438) -- (0.498,0.675)  -- (0.44,0.44)

帶有紅色輪廓的灰色網格上的“A” 一個“A”

當製作閉合路徑時,最好使用cycle而不是重複第一個座標。這使得路徑:

(0.359,0.268) -- (0.48,0.73) -- (0.52,0.73) -- (0.64,0.27) -- (0.60,0.27) -- (0.562,0.403) -- (0.43,.403) -- (0.395, 0.268) -- cycle (0.440,0.438) -- (0.555,0.438) -- (0.498,0.675) -- cycle

相關內容