Can Firefox use an SVG for a background
Can Firefox 3.5 use an SVG for a background image? ...
Can Firefox 3.5 use an SVG for a background image? ...
Can you recommend a free, open source, drawing application, like Inkscape, but written in Java based on the Apache batik code library? ...
Hi, I want to know how can one actually use a .svg file In a web page? Thanks, Parastar ...
I just see some awesome affect at Advanced 3D Animations and Transitions that can work with IE6+, FF 3+, Safari 3+ and Opera 8+. They use framework that can create VML(or IE CSS Filter) based on browser. This framework idea quite like to Raphaël—JavaScript Library. But I found some syntax that should be unique style. Because they creat...
I am investigating SVG, so I was wondering if anyone knows how good SVG support is for browsers on smart-phones. I know Opera Mini/iPhone support a lot of SVG Tiny, but I cannot figure out the support for other browsers (Blackberry, Pre, Android, Nokia smart-phones). I know phones using IE as rendering engine will have no support at all....
How to add a comment node before the root <svg> element but after the xml prolog? Or will it be less resource expensive to insert the comment with a regexp on the serialized DOM? ...
Basically i want a library for PHP that i can use to generate vector based graphic files like svg or pdf. it need to be able to output path and not pixel based results. for example i want it to use like generate_circle($radius) etc ...
I have a site that is in need of a drawing program. My users need to be able to draw floor plans and add text to these images. I'm wondering if anyone has come across a nice SVG WYSIWYG editor. Otherwise I'm going to have to use a Flash or Java app which I'm not fond of. ...
Hi, I'm working on a map of the native languages of California for Wikipedia. The map contains areas that each correspond to a language. The original looks like this (click it to see the SVG): I want to make "locator maps" for each of those individual languages by hand (in Inkscape), like this one, for a language called Cahuilla (whi...
Are there documented pylons or turbogears2 widgets for generating SVG markup as components and are there example applications that use them returning an SVG primary document? ...
I don't want to add a link to a svg (which is not possible because the svg isn't provided by me), but want to add a link like <a href=""><img src="foo.svg"/></a>. Only that this time it is not an img, but a object (so I can include a svg). It works with some browser, but for example not with firefox. What is the default idea how to do s...
I use graphviz to get the svg back dot -Tsvg -o graph.dot file How to set the Graphviz output svg to "rect" node not "polygon" and the translate is set to (0,0) not (4 256) thanks a lot <g id="graph1" class="graph" transform="scale(1 1) rotate(0) translate(4 256)"> <polygon fill="white" stroke="white" points="-4,5 -4,-256 265,-256 ...
Hello guys, First of all I am not a designer. so this question is may be too easy OR even worse not a proper question at all. Anyways, I have downloaded free fonts from GoSquared (link) which provides all fonts in single SVG file. So, is there any standard way or tool to convert this single SVG files into individual icon's svg/png fi...
Hi! I was wondering if its possible to render gradients using the import-plugin for RaphaelJS. Import tool: http: //github.com/wout/raphael-svg-import Or is there a script (PHP) I could use to make a path string I could use with raphael. I have a AJAX interface I can use if there is a PHP solution for this. Currently the import tool ...
Hi, I'm trying to use SVG. I put this into an xhtml file: <?xml version="1.0"?> <!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN""http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <body> <svg:svg xmlns:svg="http://www.w3.org/2000/...
Hi, I'm trying to position text within the SVG canvas, by supplying x, y coordinates var t = paper.text(50, 50, "Raphaël\nkicks\nbutt!"); but does not position the text like all other objects... x, y coordinates specify the center of the object! Not the "left and top most" pixel! I would like to "left align" the text along a line...
Hi, I'd like to make some really simple overlay classes in GWT to wrap some SVG stuff. I'd basically like to get a rectangle drawn, this is how I do it in javascript: var svg = document.createElementNS('http://www.w3.org/2000/svg', 'svg'); svg.setAttribute('width', '100%'); svg.setAttribute('height', '100%'); document.body.appendChild(...
Hi, Does anyone know the current state of SVG SMIL animation support in the popular browsers? It looks like Safari, Chrome, and Opera support it. Firefox has confusing reports in their dev pages about SMIL support having been added, but I don't see it as of v3.6: https://bugzilla.mozilla.org/show_bug.cgi?id=216462 I am ignoring IE sin...
Need some advice about a best-approach for this problem: I've fallen madly in love with RaphaëlJS, as it has made SVG realizable for me and my coding since it has managed to bring IE into the fold. However, I don't like having to include a .js file for every SVG graphic I want to render on the page. So, I poked around on the internet ...
I have a website which uses SVG for an interactive client side thingamabob. I would like to provide the option to download a PDF of the finished output. I can pass the final SVG output back to the server, where I want to convert to PDF, then return it to the client for download. This would need to work on a headless shared linux server,...