12

我有一个d3生成的力布局图,我需要将其导出到png当前(用户选择的)缩放不变。

根据我的推理,这将增加SVG宽度和高度,因此如果svg1920x1080被“放大”,则导出svg的宽度和高度可能要大得多以适应这一点。

我已经尝试了一切,但我遗漏了一些东西,我似乎无法为我需要的输出动态计算正确的值。

这是我的示例export SVG,请注意还有更多信息,只是在该比例下不可见。

编辑

这是我的基本导出代码,主要改编自 highcharts:

    serializeSvg: function() {
        /**
         * serialize a xml object to string
         * @param {type} xmlNode the node to use
         * @returns {String|@exp;xmlNode@pro;xml|@exp;window@pro;XMLSerializer@call;@call;serializeToString}
         */
        function serializeXmlNode(xmlNode) {
            if (typeof window.XMLSerializer !== 'undefined') {
                return (new window.XMLSerializer()).serializeToString(xmlNode);
            } else if (typeof xmlNode.xml !== 'undefined') {
                return xmlNode.xml;
            }

            return '';
        }

        var svg = serializeXmlNode(document.getElementsByTagName('svg')[0]),
            factor = 2;
        svg = '<svg'
                + ' xmlns="http://www.w3.org/2000/svg"' // xml namespace
                + ' version="1.1"'
                + ' xmlns:xlink="http://www.w3.org/1999/xlink"' // for images
                + ' ' + svg.substring(svg.indexOf('<svg ') + 5);

        // highcharts svg sanitizer
        svg = svg.replace(/width="([^"]+)"/, function(m, width) {
                return 'width="' + (width * factor) + '"';
            }).replace(/height="([^"]+)"/, function(m, height) {
                return 'height="' + (height * factor) + '"';
            }).replace(/<rect class="drag"[^<]+<\/rect>/, '')

            // IE specific
            .replace(/<IMG /g, '<image ')
            .replace(/height=([^" ]+)/g, 'height="$1"')
            .replace(/width=([^" ]+)/g, 'width="$1"')
            .replace(/id=([^" >]+)/g, 'id="$1"')
            .replace(/class=([^" ]+)/g, 'class="$1"')
            .replace(/ transform /g, ' ')
            .replace(/:(path|rect)/g, '$1')
            .replace(/style="([^"]+)"/g, function(s) {
                    return s.toLowerCase();
            });

        return svg;
    }

以及 d3 布局的主要缩放/缩放启动:

var layout = d3.layout.force();
var DEFAULT_SIZE = 64;
var GROWTH_SCALE = 1.15;
var SHRINK_SCALE = 1.05;

// creates a new force layout
var force = layout
    .size([w, h])
    .gravity(.06)
    .distance(110)
    //.friction(0.6)
    //.linkStrength(0.4)
    .charge(-((DEFAULT_SIZE * GROWTH_SCALE) * 10))
    .on('tick', tick);

// creates the svg context
var svg = d3.select('.la-container').append('svg:svg')
    .attr('width', w)
    .attr('height', h)
    .attr('pointer-events', 'all') // set for the pan/zooming
    .append('svg:g') // add a g element for capturing zoom and pan
      .call(d3.behavior.zoom().scaleExtent([0.6, 6.0]).on('zoom', redraw))
    .append('svg:g');

svg.append('svg:rect')
    .attr('class', 'drag')
    .attr('width', w)
    .attr('height', h)
    .attr('fill', 'white');
4

4 回答 4

1

因此,在您的 d3 启动代码中,您调用d3.behaviour.zoom.on()将“重绘”函数绑定到“缩放”操作。要获得比例和平移级别,您需要捕获此函数中的d3.scaled3.translate值,如下所示(因为您尚未发布重绘函数的代码):

var scale = 1;
var xtranslate=0;
var ytranslate=0;

var redraw = function(){
    scale= d3.event.scale;
    xtranslate=d3.event.translate[0];
    ytranslate=d3.event.translate[1];

    //your actual code to redraw stufff
}

这将为您提供 d3 的缩放和平移值:然后您需要对导出的 svg 应用适当的更改:我实际上并没有这样做,但大概您可以适当地缩放“高度”和“宽度”属性(我认为这只是将属性值乘以比例值,但我不能确定)。

于 2013-04-03T06:55:34.230 回答
1

应用一个视图框并将其乘以比例值,

例如 1920x1080,当未缩放时 viewbox=0 0 1920 1080

比例 = 0.5 1920*0.5 1080*0.5 视图框 = 0 0 960 540

于 2013-12-03T07:08:43.527 回答
0

From your comments, you might check out some of the options discussed here: https://groups.google.com/forum/#!msg/d3-js/tHRV4uvvHFU/yjIAfdQN8WsJ

D3 should be writing attributes into the DOM, the general expectation is that if you export the SVG as-is, you should get exactly the same view. It sounds like what you want is a process to render the existing view as png or similar.

Here's an interesting client-side only take http://html2canvas.hertzen.com/

于 2013-04-01T16:35:43.130 回答
0

我没有对此进行测试,但我认为当您导出到图像时,您首先需要缩小到起始级别。然后序列化 XMLNode。然后根据用户的缩放级别像现在一样增加大小。然后返回它。

您最初应该能够使用以下方法获取用户的转换:

缩放比例()

如果未指定,则返回当前缩放比例,默认为 1。

缩放。翻译()

如果未指定,则返回当前平移向量,默认为 [0, 0]。

于 2013-04-02T12:08:17.470 回答