我发现了其中一种将墨水放在枯树上的打印机,并测试过可以打印简单的SVG文件。
<svg xmlns="http://www.w3.org/2000/svg"
width="400px" height="800px">
<rect x="10" y="10" width="72" height="72" fill="#999999" />
<rect x="10" y="100" width="378" height="378" fill="#999999" />
</svg>
我怀疑72像素几乎恰好是19mm。(72 / 19.05)* 100〜= 378出来了100mm。
考虑到这一点,我将假定72 / 19.05实际上是用于CNC项目的最佳像素/毫米比率。
编辑:
找到此文档:http : //w3.org/TR/SVG/coords.html#Units
<svg xmlns="http://www.w3.org/2000/svg"
width="400px" height="800px">
<rect x="10" y="10" width="19.05mm" height="19.05mm" fill="#999999" />
<rect x="10" y="100" width="100mm" height="100mm" fill="#999999" />
</svg>
立即使用mm作为单位更简单