javascript – 将SVG路径转换为Rect

我想为光栅图像自动生成imagemap类型的结果.我能够以PNG:
《javascript – 将SVG路径转换为Rect》的形式提供此图像

原始的SVG就是这样的:

<svg width="580" height="400" xmlns="http://www.w3.org/2000/svg">
 <g>
  <rect fill="#fff" id="canvas_background" height="402" width="582" y="-1" x="-1"/>
  <g display="none" overflow="visible" y="0" x="0" height="100%" width="100%" id="canvasGrid">
   <rect fill="url(#gridpattern)" stroke-width="0" y="0" x="0" height="100%" width="100%"/>
  </g>
 </g>
 <g>
  <rect id="svg_1" height="67" width="54" y="119.5" x="125.5" stroke-width="1.5" stroke="#000" fill="#fff"/>
  <rect id="svg_3" height="67" width="54" y="119.5" x="180.5" stroke-width="1.5" stroke="#000" fill="#fff"/>
 </g>
</svg>

一旦我使用库跟踪它:https://github.com/jankovicsandras/imagetracerjs我得到这样的路径数据:

<svg width="156" height="114" version="1.1" xmlns="http://www.w3.org/2000/svg" desc="Created with imagetracer.js version 1.2.3" >
    <path fill="rgb(60,60,60)" stroke="rgb(60,60,60)" stroke-width="1" opacity="1" d="M 20 20 L 131 20 L 131 89 L 20 89 L 20 20 Z M 22 22 L 22 87 L 74 87 L 74 22 L 22 22 Z M 77 22 L 77 87 L 129 87 L 129 22 L 77 22 Z " />
    <path fill="rgb(255,255,255)" stroke="rgb(255,255,255)" stroke-width="1" opacity="1" d="M 0 0 L 156 0 L 156 114 L 0 114 L 0 0 Z M 20 20 L 20 89 L 131 89 L 131 20 L 20 20 Z " />
    <path fill="rgb(255,255,255)" stroke="rgb(255,255,255)" stroke-width="1" opacity="1" d="M 22 22 L 74 22 L 74 87 L 22 87 L 22 22 Z " />
    <path fill="rgb(255,255,255)" stroke="rgb(255,255,255)" stroke-width="1" opacity="1" d="M 77 22 L 129 22 L 129 87 L 77 87 L 77 22 Z " />
</svg>

我想回到矩形或多边形方法,这样我就可以测量每个对象的面积,这样如果有跟踪文本我可以通过说它的总面积低于允许作为多边形/矩形对象来展平它/展平它.

有没有办法将路径数据转换回我有2个独立对象的位置?我希望能够将结果叠加在原始图像上,并允许定位每个方块

最佳答案 我尽力回答你的问题,但这里有多种解决方案.

如果强制imagetracerjs仅使用直线边(qtres = 0.00001),则SVG路径元素为多边形,其坐标在d属性中定义:d =“M 20 20 L 131 20 …”在第一个示例中. (更多信息:https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/d)
但是1 d属性通常不仅仅是1个多边形.形状可以包括孔,并且它们表示为较小的多边形. (更多信息:https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/fill-rule)

您可以使用以下方法提取d属性:正则表达式,用Z标签分割它们(大致意思是:这个形状结束,开始形成一个孔形状),然后在坐标上使用高斯区域公式(https://en.wikipedia.org/wiki/Shoelace_formula)来获得区域.您可能需要从父形状的区域中减去孔的面积.

您的图像上有4个单独的对象,但有些不是微不足道的.我尝试“翻译”您的SVG结果,以便您可以决定要处理的路径.
ImageTracer输出首先按颜色排序. 1.路径是围绕两个较小矩形的黑色框架,从技术上讲,这是一个带有两个矩形孔的黑色矩形. 2.路径是黑色框架周围的白色框架,技术上是一个带有大矩形孔的白色矩形. 3.和4.路径是较小的白色矩形,可能与您相关.

可以选择拆分和解析SVG字符串,但遗憾的是它有点无证.您可以先获取tracedata对象,然后对其进行处理,并可以选择将其渲染为SVG字符串. (更多信息:https://github.com/jankovicsandras/imagetracerjs#examples)


var options = {qtres:0.0001};

ImageTracer.imageToTracedata(
       'example.png',
       function(tracedata){

           // color layers loop
           for(var i=0; i<tracedata.layers.length; i++){
               // paths loop
               for(var j=0; j<tracedata.layers[i].length; j++){

                   var thispath = tracedata.layers[i][j];

                   // processing this path if it's not a hole
                   if( !thispath.isholepath ){

                       // accumulating coordinates in [ [x,y] , [x,y] , ... ] polygon
                       var thispolygon = [];
                       thispolygon.push( [ thispath.segments[0].x1 , thispath.segments[0].y1 ] );
                       for(var k=0; k<thispath.segments.length; k++){ thispolygon.push( [ thispath.segments[k].x2 , thispath.segments[k].y2 ] ); }

                       // TODO: calculate thispolygon area with https://en.wikipedia.org/wiki/Shoelace_formula here
                   }


               }// End of paths loop
           }// End of color layers loop


       },// End of imageToTracedata callback()

       options

);// End of ImageTracer.imageToTracedata()


我希望这些帮助. 🙂

点赞