English 中文(简体)
• 将聚氯乙烯中定义的物体升级至物理单位?
原标题:Scaling SVG objects defined in pixels to physical units?
  • 时间:2012-05-16 12:06:36
  •  标签:
  • svg

我有一个特别安全等级要素,即“297毫米”和“210毫米”的宽度和高度,没有观察箱。 我之所以这样做,是因为我想在A4号观察所内工作,但我想在地图上制造一些要素。

在某些时候,我需要扩大在册子中定义的物体,使之适合A4网页的一部分。 例如,我可能有一个100个百分之十的物体,我想横向将这个物体扩大到30毫米。

这是可能的吗? 我认为,我需要一个拥有新的协调系统的第二集装箱,但我找不到这样做的任何办法。

http://www.ohchr.org。

看来,我(或SVG)误解了什么东西。 我认识到,我可以把一条线缩小到100%,然后用<条码>植被-BBox

function getDotsPerInch() {
   var hgroup, vgroup, hdpi, vdpi;

   hgroup = svgDocument.createElementNS(svgNS, "g");
   vgroup = svgDocument.createElementNS(svgNS, "g");
   svgRoot.appendChild(hgroup);
   svgRoot.appendChild(vgroup);

   drawLine(hgroup, 0, 100, "100%", 100, "#202020", 1, 1);
   drawLine(vgroup, 100, 0, 100, "100%", "#202020", 1, 1);

   hdpi = hgroup.getBBox().width  * 25.4 / WIDTH;
   vdpi = vgroup.getBBox().height * 25.4 / HEIGHT;

   drawText(hgroup, "DPI, horizontal: " + hdpi.toFixed(2), 100, 100);
   drawText(hgroup, "DPI, vertical:   " + vdpi.toFixed(2), 100, 120);
}

IE9、FF、歌剧和 Chrome都同意,两个监测器都是<96>横向和纵向(虽然操作过程稍微不准确)的,Sato报告对两个监测器有零份。 So svg似乎将“pixels”定义为“96dpi”。 部分 血清似乎证实了这一点,尽管我已经发现任何东西是肯定的,而且大多数的点击使90多皮克,其中96dpi是FF变量。

问题回答

您可以确定以下各项内容:<svg> 内容,并使用有关儿童内容的“观点Box属性”来建立新的协调制度。 引申儿童<代码><svg> 要素x, y, width and high属性,其中你希望儿童在母体协调制度中出庭。





相关问题
How to simplify SVG code?

Is it possible to simplify / clean up svg code by replacing the use-tags with standard svg elements? Maybe an inkscape plugin? Haven t found anything... Background: I m converting some svgs to javafx ...

How to link from SVG?

What I tried is this <a xlink:target="http://ponyoverflow.com"> <text class="text" x="20" y="718" text-anchor="start">Mail Order Ponies</text> </a> and variations with href ...

Ruby Support for SVG

Is there some library or helper to produce SVG graphics with Ruby? I googled a bit and found many, but all seem to be dusty and very incomplete… Does anyone know about some nice, reliable alternative?

Mangling IDs and References to IDs in XML

I m trying to compose xml elements into each other, and the problem I am having is when there s the same IDs. Basically what I need to do is mangle all the IDs in an xml file, as well as the ...

热门标签