active questions tagged svg - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T00:37:41Z http://stackoverflow.com/feeds/tag/svg http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1870710/plot-points-for-image-map 0 plot points for image map Joshua 2009-12-08T23:53:37Z 2009-12-16T23:16:26Z <p>I want to add automatic area highlighting to image maps on my webpage. I've found the mapper.js library to be very useful in achieving this, however creating the x,y plots around a regional map is very time consuming.</p> <p>Is there a quick way to create bounding co-ordinates of a irregular polygon such as can be found on regional maps?</p> <p><strong>EDIT</strong><BR> There has got to be a way to do this. I have Fireworks 8 as well as photoshop CS3 on my windows PC, but I'm more familiar with Fireworks.</p> <p>If I create a marquee, I can right click > Modify Marquee > Convert to Path. That creates a Path with several points, but I don't know how to get to the next step which is extracting the coords of those points. </p> <p>I've tried inserting a hotspot, a polygon slice, then exporting to "html and images". Both of these give me square hotspots, not a polygon. I've also tried right click on the path and Edit > Copy Path Outlines, as well as Edit > Copy Html Code. Neither give me the polygon coords.</p> <p>I can only get polygon coords for a slice. Is there perhaps a way to convert the path to a slice in Fireworks 8?</p> http://stackoverflow.com/questions/1912760/how-would-you-implement-an-interactive-floorplan-building-map 0 How would you implement an interactive floorplan / building map? Hissohathair 2009-12-16T06:43:49Z 2009-12-16T11:39:51Z <p>I need to build an "interactive floorplan" for a shopping centre (or two).</p> <p>Many shopping centre websites already have this (eg <a href="http://www.bluewater.co.uk/content/store%5Fmap" rel="nofollow">Bluewater in the UK</a>)</p> <p>Traditionally, the way to build such a floorplan / map is to do it in Flash. The actual floorplan is a Flash asset and the data that describes which retailer is in each location is fetched from the webserver as XML. That way editors can update the location of retailers without having to edit and recompile the SWF file. However if the floorplan itself changes (for example, a larger shop is split into two smaller ones) then the map has to be edited. Another disadvantage is that the data isn't readily available to third parties for mashups etc.</p> <p>So apart from Flash what would you consider using to achieve the same effect? I know of SVG but IE doesn't support it.</p> <p>I was wondering "what would Google do?" Are there any examples on Google Maps or Google Earth that take you inside the building?</p> <p>More generally, what are the <em>open</em> standards available for representing interior floorplans?</p> http://stackoverflow.com/questions/1907736/framework-for-building-visually-rich-desktop-applications 0 Framework for building visually rich desktop applications? ChrisInCambo 2009-12-15T14:13:29Z 2009-12-15T14:53:31Z <p>Hi,</p> <p>I've started building an app with Flex/Air but am getting sick of it's clunkyness.</p> <p>The app that I'm building has similar behaviour to Prezi (www.prezi.com) but in a completely different field.</p> <p>I'm looking for something on the desktop which has flex like capabilities, such as drawing vectors then zooming in/out, rotating etc, gui widgets would be a bonus but not essential.</p> <p>If it was written in Python/Ruby or had an abstraction in either language that would be great.</p> <p>I've had a quick look at PyGame and Pyglet but am not sure of their suitability.</p> <p>Any ideas?</p> <p>Cheers,</p> <p>Chris</p> http://stackoverflow.com/questions/1895148/parsing-svg-path-in-objective-c 0 Parsing SVG path in objective-c pabloruiz55 2009-12-13T00:13:59Z 2009-12-13T14:46:17Z <p>Hi, i need to parse some paths of an SVG file, they are simple lines. When retrieving the data i end up with this string:</p> <blockquote> <p>m 0,666.6479 254.28571,0</p> </blockquote> <p>According to SVG specifications m denotes a new current point then the following 2 numbers are the position and the laters are relative positions to the first one.</p> <p>So that would create a line from point <em>(0, 666.6479)</em> to <em>(254.28, 666.64)</em></p> <p>How can i parse that in Objective-C so i can end up with those 2 <code>CGPoint</code>s or more if there were?</p> <p>i know that if it finds an <code>m</code>, the following 2 comma separated numbers should be my first point and after each space there are 2 comma separated numbers that i should sum to the current point to get the next one.</p> <p>What i don't know if how to parse this correctly.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1885774/good-reasons-not-to-design-websites-with-a-vector-graphics-application 1 Good reasons NOT to design websites with a vector graphics application? julien 2009-12-11T04:24:33Z 2009-12-11T05:28:58Z <p>All the (web)designers I've known or worked with, used photoshop almost exclusively, and yet, now that I wanna try my hand at web-design for a personal project, I feel compelled to use a vector graphics application (namely Inkscape).</p> <p>The idea of the <em>actual design process</em> just seems more rational with VG, given that I'll be experimenting with laying out and composing graphical 'objects', it seems to make more sense to be able to act upon these as 'wholes', rather than having to deal with the pixels that make them up. </p> <p>HTML5 and svg seem like another big upside, but I'm worried I may be looking at this the wrong way, due to lack of experience, since I haven't seen anyone designing like this, and resources on the matter are scarce.</p> <p>So, are there any reasons why this would be a bad idea ?</p> http://stackoverflow.com/questions/1885524/can-bound-negative-space-be-used-in-svg 0 can bound negative space be used in SVG? Anthony 2009-12-11T02:52:35Z 2009-12-11T02:52:35Z <p>If I have a map of three countries, and their borders form the outline of a sea, is their a way with SVG to give that bound area attributes and style?</p> <p>Another example might be three triangles which form a third triangle in the center (like the triforce). If someone wanted to make that middle empty area glow (or whatever)...</p> http://stackoverflow.com/questions/1116147/simplest-way-to-clear-a-container-using-raphaeljs-javascript-graphical-library 2 Simplest way to clear a container using raphaeljs javascript graphical library Emilio 2009-07-12T14:44:36Z 2009-12-10T15:28:28Z <p>I have to clear and redraw a raphael javascript main container. I've tried with</p> <pre> var paper = Raphael(10, 50, 320, 200); paper.remove(); // Doesn't work paper.node.removeNode(); //this neither paper.removeNode(); //this neither </pre> <p>Any idea?</p> http://stackoverflow.com/questions/1881476/is-there-any-scripting-svg-editor 1 Is there any scripting SVG editor? btel 2009-12-10T14:52:38Z 2009-12-10T14:58:27Z <p>I would like to edit SVG files using some scripting language (preferably Python). In particular, I would like to merge two SVG files, add some annotations, and arrange them in a larger image. Is there any software available for such purposes?</p> <p>Thanks,</p> <p>Bartosz</p> http://stackoverflow.com/questions/1861382/convert-png-to-svg 2 Convert PNG to SVG webo 2009-12-07T17:08:41Z 2009-12-07T18:24:52Z <p>How could I convert a PNG image to a SVG?</p> http://stackoverflow.com/questions/1849240/how-can-i-programatically-convert-svg-files-containing-text-to-pdf-files-specifi 2 How can I programatically convert SVG files containing text to PDF files (specifically on CentOS 5.3 x86_64)? molecules 2009-12-04T19:46:36Z 2009-12-07T16:59:52Z <p>I would like to programatically convert SVG files to PDF files. However, the SVG files contain text that must be searchable in the generated PDF files. Also, it has to work on Red Hat Enterprise Linux 5.3 or CentOS 5.3 for the x86_64 architecture. It would be nice if it were Open Source or at least not very expensive.</p> <p>Here is what I've tried. All of these, except Batik, work fine on Debian Lenny.</p> <p><em><a href="http://www.inkscape.org/" rel="nofollow">Inkscape</a></em><br> I can get it installed using autopackages from <a href="http://inkscape.modevia.com/ap" rel="nofollow">http://inkscape.modevia.com/ap</a>, but when I use it from the command line, the text is not searchable.</p> <p><em><a href="http://xmlgraphics.apache.org/batik/tools/rasterizer.html" rel="nofollow">Batik rasterizer</a></em> [sic]<br> When it converts SVG files to PDF files, the text is no longer searchable. </p> <p><em><a href="http://cairographics.org/snapshots/" rel="nofollow">svg2pdf</a></em><br> The source for this and several of its dependencies are available to <a href="http://cairographics.org/snapshots/" rel="nofollow">download</a>. I have been trying to get it to compile on CentOS, but haven't had success yet. I found a <a href="http://www.xgrr.de/wordpress/?s=svg2pdf" rel="nofollow">precompiled version</a> for Debian x86_64, but it doesn't work on CentOS. </p> <p><em>rsvg-convert</em><br> Generated PDF isn't searchable on CentOS 5.3. Perhaps installing a newer version of cairo would help. Thanks to DaveParillo for mentioning rsvg-convert (on superuser).</p> <p><strong>SOLUTION</strong> (but perhaps some of the above will still be useful to the reader)<br> <em><a href="http://www.princexml.com" rel="nofollow">princeXML</a></em><br> It works fine on CentOS when installed from source. For some reason it doesn't work when installed from the .rpm. Thanks Erik Dahlström!</p> <p><a href="http://superuser.com/questions/79043/how-can-i-batch-convert-svg-files-containing-text-to-pdf-files-specifically-on-c">Cross posted on superuser</a></p> http://stackoverflow.com/questions/1780892/extracting-path-data-from-an-svg-map-to-use-in-raphaeljs 0 Extracting path data from an SVG map to use in RaphaelJs Srikanth 2009-11-23T02:56:50Z 2009-12-07T13:39:12Z <p>I'm trying to build an an interactive map using RaphaelJS (e.g. <a href="http://raphaeljs.com/australia.html" rel="nofollow">http://raphaeljs.com/australia.html</a>). Please check the source. It requires map path data to input. There is no clear explanation anywhere about how to obtain this information, other than the fact that illustrator or inkscape are capable of doing it. I'm looking to obtain "States" path data from this India map: h t t p : / / en.wikipedia.org/wiki/File:India-locator-map-blank.svg</p> <p>Please advice.</p> http://stackoverflow.com/questions/1650415/html5-canvas-element-and-svg 1 html5 canvas element and svg. Stefano Borini 2009-10-30T15:15:14Z 2009-12-05T20:37:11Z <p>Why do we need the html5 canvas element, when the same can be achieved through embedded svg? </p> http://stackoverflow.com/questions/1851245/how-to-embed-svg-in-html-reading-from-database 0 how to embed svg in HTML reading from DATABASE manu 2009-12-05T05:40:45Z 2009-12-05T05:40:45Z <p>I am reading svg file stored in mysql db in longblob format in an gwt application. I am tansferring the file in string format from servlet to client side as json using HTTP. Now i want to embed it into HTML to display in a panel.</p> <p>the HTML tag provided is How to embed it without creating a temporary file?</p> http://stackoverflow.com/questions/1837262/are-there-any-pure-python-bsd-ish-open-source-svg-libraries 1 Are there any pure Python, BSD-ish open source SVG libraries? Jeffrey Harris 2009-12-03T02:23:41Z 2009-12-03T04:47:12Z <p>I'm looking for a pure Python library to help put together SVG images. It doesn't need to be fast.</p> <p>I know <a href="http://codeboje.de/pysvg/" rel="nofollow">pySVG</a> exists, but I'm not interested in a GPL library (and I can't use GPL libraries for this particular project).</p> <p>Basic SVG elements aren't especially complicated, so I suppose I could roll my own, but I'd rather participate in an existing project than go off on my own.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1824677/how-to-replace-use-element-in-svg 0 How to replace use-element in SVG? räph 2009-12-01T08:06:05Z 2009-12-01T08:06:05Z <p>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...</p> <p>Background: I'm converting some svgs to javafx graphics (.fxz) with javafx's production suite. And the tool doesn't udnerstand the use element.</p> http://stackoverflow.com/questions/1816262/how-to-link-from-svg 0 How to link from SVG? Ludwig Weinzierl 2009-11-29T18:15:03Z 2009-11-30T12:25:18Z <p>What I tried is this</p> <pre><code>&lt;a xlink:target="http://ponyoverflow.com"&gt; &lt;text class="text" x="20" y="718" text-anchor="start"&gt;Mail Order Ponies&lt;/text&gt; &lt;/a&gt; </code></pre> <p>and variations with <code>href</code> and <code>type="simple"</code>.</p> <p>The link text appears, but the link is not clickable. I tried Firefox 3.5.5, Chromium, Inkscape and GNOME Image Viewer.</p> <p>Is there anything wrong with the syntax and if not is there any application that supports links in SVG?</p> http://stackoverflow.com/questions/1805101/svg-elliptical-arcs-with-java 0 SVG Elliptical Arcs with Java Pierre 2009-11-26T18:30:17Z 2009-11-28T06:44:35Z <p>I recently wrote a java <a href="http://plindenbaum.blogspot.com/2009/11/tool-converting-svg-to-canvas%5F22.html" rel="nofollow">program</a> transforming a <strong>SVG</strong> document to HTML/<strong>Canvas</strong>: It was easy to translate a path such as </p> <pre><code>d="M 0 0 L 100 100 z" </code></pre> <p>to something like</p> <pre><code>GeneralPath L= new GeneralPath(); L.moveTo(0,0); L.lineTo(100,100); L.closePath(); </code></pre> <p>However I don't know how to translate the <strong>Elliptical Arc</strong> command to Java/GeneralPath. For example, does anyone know how I should translate the following command to Java/GeneralPath ? </p> <pre><code>d = "M 750 200 a 100 50 135 1 1 250 50" </code></pre> <p>Thanks for your help.</p> http://stackoverflow.com/questions/63607/rendering-svg-and-delphi 2 Rendering SVG and Delphi Harriv 2008-09-15T14:53:05Z 2009-11-27T10:54:11Z <p>What are options to import and render SVG images with Delphi (Win32)?</p> <p>"Interactive" component would be big advantage, I'd like to be able to modify the SVG image dynamically (change colors, line widths, texts) and get events when user clicks the image.</p> http://stackoverflow.com/questions/1807807/text-alignment-in-svg 0 Text alignment in SVG Smile ArT 2009-11-27T10:02:29Z 2009-11-27T10:02:29Z <p>How to make text with proportional font but an equal number of characters per line fully justified in SVG text box? Preferably with an svg-code example if it's possible.</p> http://stackoverflow.com/questions/1445378/jquery-doesnt-select-lineargradient-object 0 jQuery doesn't select lineargradient object. leeand00 2009-09-18T15:43:28Z 2009-11-27T08:00:05Z <p>I am using jQuery 1.3.2, and I'm trying to select some elements in an svg DOM element.</p> <pre><code>$('svg &gt; defs &gt; lineargradient') </code></pre> <p>However for some reason it does not select it, I know that I can access other items in the &lt;svg&gt; element since I have successfully retrieved an $("svg > rect").</p> <p>My SVG DOM looks like this:</p> <pre><code>&lt;svg width="975" height="385"&gt; &lt;defs&gt; &lt;lineargradient id="raphael-gradient-0" x1="1.000" y1="1.000" x2="0.000" y2="0.000"&gt; &lt;stop offset="0%" stop-color="#242b62"/&gt;&lt;stop offset="9.090909090909092%" stop-color="#174a88"/&gt; &lt;stop offset="18.181818181818183%" stop-color="#0e60a3"/&gt;&lt;stop offset="27.272727272727273%" stop-color="#0b66ab"/&gt; &lt;stop offset="36.36363636363637%" stop-color="#0870b7"/&gt; ... &lt;/lineargradient&gt; &lt;lineargradient id="raphael-gradient-1" x1="1.000" y1="1.000" x2="0.000" y2="0.000"&gt;...&lt;/lineargradient&gt; &lt;/defs&gt; &lt;circle cx="50" cy="40" r="10" fill="#ff0000" stroke="#000" transform=""/&gt; &lt;rect x="0" y="0" width="975" height="385" fill="url(#raphael-gradient-1)" stroke="none" transform="" style="opacity: 1;" opacity="1" fill-opacity="1"/&gt; &lt;/svg&gt; </code></pre> <p>Is there any reason why jQuery 1.3.2 wouldn't be able to select the &lt;lineargradient&gt; elements?</p> http://stackoverflow.com/questions/1803384/render-svg-stored-in-memory-using-jsr-226-blackberry 0 Render SVG stored in memory using JSR-226 (Blackberry) HughOBrien 2009-11-26T12:21:37Z 2009-11-26T12:40:51Z <p>I have code that generates a data-driven SVG graph and I'd like to display the graph directly. The method:</p> <pre><code>javax.microedition.m2g.ScalableImage.createImage </code></pre> <p>can take either a URI or an InputStream as the source data for the graph, what would be a good way to pass my graph data in? It's in String form in memory, so from what I can see I can either create a custom class extending InputStream (would prefer not to), or write the SVG data to disk and have it read back in. Is there any better ways of doing this?</p> http://stackoverflow.com/questions/1803049/default-svg-style 1 Default SVG style Pierre 2009-11-26T11:05:25Z 2009-11-26T11:39:23Z <p>What is the default <strong>SVG</strong> style ? for example, what is the default <strong>font</strong> of a new SVG document ? Is it described in the SVG spec ?</p> <pre><code>&lt;svg&gt;&lt;text x="10" y="10"&gt;Hello&lt;/text&gt;&lt;/svg&gt; </code></pre> <p>Thanks</p> http://stackoverflow.com/questions/1797203/how-to-load-an-external-javascript-script-to-pure-svg-document 1 How to load an external JavaScript script to (pure) SVG document? akauppi 2009-11-25T14:22:07Z 2009-11-25T14:26:48Z <p>I have fairly large script within an .svg file and I'd like to get it out of the CDATA section into an external file. How to achieve this?</p> <p>The HTML regular does not work:</p> <pre><code>&lt;script type="text/javascript" src="Track_animation.js" /&gt; </code></pre> <p>The documentation I have been able to find only concerns with JS embedded within the SVG itself. Is use of external scripts even possible?</p> <p>Using OS X and Safari 4.0.4 for rendering.</p> http://stackoverflow.com/questions/163632/which-svg-toolkit-would-you-recommend-to-use-in-java 2 Which SVG toolkit would you recommend to use in Java? David Segonds 2008-10-02T17:45:28Z 2009-11-24T11:16:25Z <p>As a follow-up to another <a href="http://stackoverflow.com/questions/162991/selecting-proper-toolkit-for-a-2d-simulation-project-in-java">question</a>, I was wondering what would be the best way to use SVG in a Java project.</p> http://stackoverflow.com/questions/1787707/how-do-you-convert-an-svg-image-paths-into-separate-png-images 1 How do you convert an SVG image "paths" into separate PNG images? btelles 2009-11-24T04:06:58Z 2009-11-24T05:56:56Z <p>Hi there, I've got an SVG image with 67 separate paths.</p> <p>Are there any libraries/tutorials out there that will create a separate raster image such as a PNG for each of those paths, and perhaps name them according to the path id?</p> http://stackoverflow.com/questions/1094807/is-there-a-script-available-to-resize-svg 0 Is there a script available to resize SVG? jsight 2009-07-07T20:53:44Z 2009-11-23T23:43:00Z <p>Is there a way to script the rescaling of a .SVG from its current size (thousands of pixels) to a much smaller size? I've tried ImageMagick, but its support for SVG gradients is far too weak to be useful.</p> <p>The purpose is to work around a bug in a rendering library that sometimes causes svgs with large pixel sizes to allocate large rasters (before ultimately being rescaled smoothly down for actual display).</p> <p>For example, how can I change this 1024x1024px svg:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8" standalone="no"?&gt; &lt;!-- Created with Inkscape (http://www.inkscape.org/) --&gt; &lt;svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="1024.09" height="1024.36" id="svg2" sodipodi:version="0.32" inkscape:version="0.46" version="1.0" sodipodi:docname="tst.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape"&gt; &lt;defs id="defs4"&gt; &lt;linearGradient inkscape:collect="always" id="linearGradient2454"&gt; &lt;stop style="stop-color:#800000;stop-opacity:1;" offset="0" id="stop2456" /&gt; &lt;stop style="stop-color:#800000;stop-opacity:0;" offset="1" id="stop2458" /&gt; &lt;/linearGradient&gt; &lt;inkscape:perspective sodipodi:type="inkscape:persp3d" inkscape:vp_x="99.717407 : 889.90313 : 1" inkscape:vp_y="7.5659029e-15 : 92.21017 : 0" inkscape:vp_z="191.66118 : 889.90313 : 1" inkscape:persp3d-origin="145.68929 : 873.73005 : 1" id="perspective10" /&gt; &lt;radialGradient inkscape:collect="always" xlink:href="#linearGradient2454" id="radialGradient2460" cx="4022.8572" cy="5451.2656" fx="4022.8572" fy="5451.2656" r="3559.865" gradientTransform="matrix(-0.1071067,-0.1166362,0.1377765,-7.0459663e-2,276.61943,1452.439)" gradientUnits="userSpaceOnUse" /&gt; &lt;/defs&gt; &lt;sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" gridtolerance="10000" guidetolerance="10" objecttolerance="10" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="0.49497475" inkscape:cx="403.89421" inkscape:cy="477.41913" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1680" inkscape:window-height="978" inkscape:window-x="1307" inkscape:window-y="24" /&gt; &lt;metadata id="metadata7"&gt; &lt;rdf:RDF&gt; &lt;cc:Work rdf:about=""&gt; &lt;dc:format&gt;image/svg+xml&lt;/dc:format&gt; &lt;dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /&gt; &lt;/cc:Work&gt; &lt;/rdf:RDF&gt; &lt;/metadata&gt; &lt;g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1"&gt; &lt;rect style="fill:#0000ff;fill-rule:evenodd;stroke:#000000;stroke-width:0.10674229px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="rect2403" width="836.00311" height="815.66479" x="144.90677" y="154.41733" /&gt; &lt;path style="fill:url(#radialGradient2460);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.10674229px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 492.29996,1003.8047 C 992.20722,1001.6971 989.38289,999.5894 992.20722,997.48173 C 995.03156,995.37408 992.20722,124.91007 992.20722,124.91007 L 113.83908,124.91007 L 122.31209,1012.2353 L 492.29996,1003.8047 z" id="path2382" /&gt; &lt;g sodipodi:type="inkscape:box3d" style="fill:#800000;fill-opacity:1" id="g2392" inkscape:perspectiveID="#perspective10" inkscape:corner0="-0.94081067 : 0.17266027 : 0 : 1" inkscape:corner7="-0.94348241 : 0.15857352 : 0.25 : 1"&gt; &lt;path sodipodi:type="inkscape:box3dside" id="path2402" style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" inkscape:box3dsidetype="13" d="M 876.40947,160.66071 L 913.12582,161.89944 L 324.68925,139.51689 L 322.74524,139.47316 L 876.40947,160.66071 z" /&gt; &lt;path sodipodi:type="inkscape:box3dside" id="path2400" style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" inkscape:box3dsidetype="14" d="M 913.12582,138.91648 L 913.12582,161.89944 L 324.68925,139.51689 L 324.68925,135.27915 L 913.12582,138.91648 z" /&gt; &lt;path sodipodi:type="inkscape:box3dside" id="path2404" style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" inkscape:box3dsidetype="11" d="M 322.74524,135.27204 L 324.68925,135.27915 L 324.68925,139.51689 L 322.74524,139.47316 L 322.74524,135.27204 z" /&gt; &lt;path sodipodi:type="inkscape:box3dside" id="path2396" style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" inkscape:box3dsidetype="5" d="M 876.40947,138.71518 L 913.12582,138.91648 L 324.68925,135.27915 L 322.74524,135.27204 L 876.40947,138.71518 z" /&gt; &lt;path sodipodi:type="inkscape:box3dside" id="path2394" style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" inkscape:box3dsidetype="6" d="M 876.40947,138.71518 L 876.40947,160.66071 L 322.74524,139.47316 L 322.74524,135.27204 L 876.40947,138.71518 z" /&gt; &lt;path sodipodi:type="inkscape:box3dside" id="path2398" style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" inkscape:box3dsidetype="3" d="M 876.40947,138.71518 L 913.12582,138.91648 L 913.12582,161.89944 L 876.40947,160.66071 L 876.40947,138.71518 z" /&gt; &lt;/g&gt; &lt;rect style="fill:#800000;fill-opacity:1" id="rect2448" width="36.716354" height="14.753627" x="432.98892" y="103.83346" /&gt; &lt;rect style="fill:#800000;fill-opacity:1" id="rect2450" width="22.594679" height="16.861288" x="133.60942" y="101.7258" /&gt; &lt;rect style="fill:#800000;fill-opacity:1" id="rect2452" width="22.594679" height="6.3229828" x="949.84222" y="97.510475" /&gt; &lt;/g&gt; &lt;/svg&gt; </code></pre> <p>To a 102.4x102.4 SVG? It'd be nice if it didn't drop pieces of the SVG as well (which kind of rules out libsvgbin2, though it comes close).</p> http://stackoverflow.com/questions/1705141/how-to-transform-a-path-in-svg-so-that-it-is-parallel-to-its-original-location 1 How to transform a path in svg so that it is parallel to its original location? gjrwebber 2009-11-10T01:35:18Z 2009-11-22T02:06:12Z <p>Hi, I have a path defined in SVG. I would like to make two copies of the path and translate them so that one sits parallel to the original on one side, and the other sits parallel on the other side. The idea is to end up with 3 paths, all parallel to each other and not overlapping. </p> <p>I have tried simple translations such as transform="translate(10,10)" and transform="translate(-10,-10)" for the two paths, but in some paths they end up crossing each other which is not what I want.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1777300/ruby-support-for-svg 0 Ruby Support for SVG Lailson Bandeira 2009-11-22T00:27:10Z 2009-11-22T01:31:30Z <p>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?</p> http://stackoverflow.com/questions/1755079/mono-lighttpd-garbage-text-added-to-svg-file-returned-via-response-write 0 Mono / Lighttpd - Garbage text added to SVG file returned via Response.Write() rob 2009-11-18T10:32:34Z 2009-11-20T09:58:57Z <p>I am developing a web application that manages a population of plants. One feature of the application is the ability to view relationships between plants as a graph. This visualisation is generated as a dot file, then turned into SVG using GraphViz. The resulting SVG markup is then rendered to the browser via an .aspx file, using the Response.Write() technique.</p> <p>Aspx markup:</p> <pre><code>&lt;%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Visualisation.aspx.cs" Inherits="Webapp.PopulationManager.Visualisation" %&gt; </code></pre> <p>Codebehind:</p> <pre><code>protected void Page_Load(object sender, EventArgs e) { if(!Page.IsPostBack) { // ...snip... string svgString = PopulationModule.VisualiseTable(connectionTable, title, url.ToString()); Response.Clear(); Response.ClearContent(); Response.ClearHeaders(); Response.ContentType = "image/svg-xml"; Response.AddHeader("Content-Disposition", string.Format("inline;filename={0}", filename)); Response.Write(svgString); Response.Flush(); } } </code></pre> <p>This techniques works perfectly on my Windows development machine (a dialog pops up asking me to save/open the SVG file).</p> <p>However it fails when deployed to the Linux server that is hosting this app - the page returns the SVG markup, but a garbage string of about 5-6 characters is added as the first line, causing the browser to fail parsing the SVG file.</p> <p>The Linux host runs RHEL5, Mono 1.9, and Lighttpd (with fast-cgi to talk to Mono).</p> <p>I have verified that the SVG markup is generated cleanly on the Linux server; and if I run the web app with XSP2 instead of Lighttpd, the page works as expected. The garbage line is added somewhere after the SVG markup is generated (so I can't simply remove the first line before writing out the response).</p> <p>Does anyone know what might be causing this? Options, ideas, and thoughts greatly recieved!</p> <p>Thanks.</p> <p>EDIT:</p> <p>The characters vary depending on the entity I create a visualisation for - but remain the same for a given entity. So if I create an SVG visualtion for object A, I'll always get the string 1f35 as garbage in the first line.</p> http://stackoverflow.com/questions/1702954/which-would-you-prefer-svg-html5-or-regend-png-for-graphs-charts 2 Which would you prefer? SVG, HTML5 or regen'd-PNG for graphs & charts? Xepoch 2009-11-09T18:47:31Z 2009-11-19T09:21:10Z <p>I'm developing a new site that graphs some operational metrics. As such about a dozen charts/graphs will be displayed on the site. I want to be able to have them dynamically scale down (within reason) based upon the size of the browser.</p> <p>I'm debating the pros/cons of generating these as one of these options:</p> <ol> <li><strong>SVG</strong>. Great for scaling but support may have limited support,</li> <li><strong>HTML5</strong>. Clearly a great choice for the future and for FF customers, IE?</li> <li><strong>PNG</strong>. This would require that I regenerate the PNG based upon the size of the DIV &amp;c.</li> </ol> <p>Which is the preferable option? I'm leaning towards PNG just for ubiquitous support, but would like to have client-side scaling. What is the best solution given the state of affairs of SVG and HTML5 canvas support in browsers?</p>