答案1
没有太多时间来做出详细回答,但因为可能,我会为您简化一些步骤。
- 观看有关如何在 Inkscape 中将任何图像转换为矢量的视频。
- 查看此答案如何将 svg 导出到 tikz
- 观看有关如何安装 inkscape 插件的视频。
- 在 inkscape 中,使用你的矢量化图像,转到扩展>>导出>>导出到 tikZ 路径。
- 使用此选项[抱歉,UI 是西班牙语]:
- 这将生成一个很长的代码[此代码无法作为 MWE 放置,因为它有超过 3000 个字符并且页面不允许复制它。]:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\begin{document}
\def \globalscale {1.000000}
\begin{tikzpicture}[y=0.80pt, x=0.80pt, yscale=-\globalscale, xscale=\globalscale, inner sep=0pt, outer sep=0pt]
\begin{scope}[shift={(-54.5242,-89.3565)}]% layer1
% path847
\path[fill=black,line width=0.056pt]
(26.5695,47.2394)
.. controls (26.3421,47.0120) and (25.5522,46.5029)
.. (25.4268,46.5029) .. controls (25.3729,46.5029) and (25.1336,46.6614)
.. (27.2576,24.6615) .. controls (27.2406,24.6615) and (27.2267,24.6300)
.. (27.2267,24.5915) -- cycle(27.0273,24.2495)
.. controls (26.9057,24.1725) and (26.9516,23.9265) ... very long code ....
... very long code ....
... very long code ....
.. (27.0876,23.9265) .. controls (27.1491,23.9265) and (27.2008,24.0053)
.. (27.2138,24.1190) .. controls (27.2368,24.3185) and (27.1889,24.3520)
.. (27.0273,24.2495) -- cycle;
% path847
\end{scope}
\end{tikzpicture}
\end{document}
下一步...
- 将路径复制到您想要的位置并在 tikzpicture 环境属性中缩放它。
- 当然,您可以跳过所有这些步骤,因为您已将图像转换为矢量,因为在 inkscape 中您可以将其导出为 PDF,然后使用您想要的所有矢量属性将其导入,即使在 tikz 环境中也是如此。
- 查看此帖子在章节开头插入图片
- 然后你也可以玩导入矢量 pdf tikz 生成的图像将 tikzpicture 的不同组件缩放在一起。