Questions tagged «inkscape»

26
删除SVG文件中的转换
我已经为此苦苦挣扎了一段时间,似乎无法在任何地方找到答案。我有一个SVG文件,看起来像这样: <svg xmlns:dc="http://purl.org/dc/elements/1.1/" ... width="72.9375" height="58.21875" ...> ... <g ... transform="translate(10.75,-308.96875)" style="..."> <path inkscape:connector-curvature="0" d="m -10.254587,345.43597 c 0,-1.41732 0.17692,-2.85384 0.5312502,-3.5625 0.70866,-1.41733 2.14518,-2.82259 3.5625,-3.53125 1.41733,-0.70866 2.11392,-0.70867 3.53125,0 1.41732,0.70866 ... z" ... /> </g> </svg> 我想删除该transform="..."行,但图像仍停留在放置位置(在InkScape中)。如果我手动删除该转换,则图像会压缩到屏幕的另一部分(如预期的那样),但是我需要完全摆脱该转换,同时将图像精确地放置在所需的位置。有没有办法删除/展平到路径坐标本身的变换?(我需要处理的唯一变换是平移和缩放,没有矩阵。)
155 svg  transform  inkscape 



8
使用ImageMagick使用抗锯齿将SVG转换为透明PNG
我想将SVG图像转换为具有透明背景和抗锯齿边缘(使用半透明像素)的PNG文件。不幸的是,我无法让ImageMagick进行抗锯齿,边缘总是看起来很糟糕。这是我尝试过的: convert +antialias -background transparent in.svg -resize 25x25 out.png 有什么想法或我可以使用的其他命令行工具吗?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.