[svg-developers] svg2png

2007-09-02 Thread Holger Wll
Hi folks
i finally found some time for programming and SVG again. just dropping
by to say hi to everyone, and to let you know about my latest project.
its an svg2png converter for firefox3. you can find the first test
version here:
http://www.treebuilder.de/default.asp?file=66.xml

with this tool you can convert your svg to png or apng (animated PNG)
inculuding content created onload.

please test it and tell me what you think.
(i know there are a lot of bugs :)
cheers
Holger



-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click edit my 
membership
 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 


[svg-developers] Re: Stumped by Firefox

2006-10-13 Thread Holger Wll
Hi

 A 250 -48 0 0 0 -234.32 16.72 ...
^^^

Firefox does not allow negative radii. try it with positive radius
and all looks fine in FF.

cheers
Holger




-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click edit my 
membership
 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



[svg-developers] Re: SVG 1.1 Layers : Help needed

2006-10-11 Thread Holger Wll
--- In svg-developers@yahoogroups.com, 
mostwantedsince198x [EMAIL PROTECTED] wrote:

Hi

 
 Now we are trying to implement a  new functionality, which is 
helpful 
 for theme designers.Instead of editing svg files individually , we 
 thought of collecting multiple SVG files and generate a single SVG 
 file that contains a background layer and one layer for each 
 individual SVG file. The layers shall be named so that when copying 
 back to the tool,each SVG can be identified and applied to the 
 corresponding elements. This will ease the job of designer , so he 
 can do the necessary batch processing in the layers.
 

this is a great idea, but there is a major problem with this approach.
as far as i know , no SVG editor supports editing shapes inside a 
group, you have to ungroup before editing the shapes, and then 
regroup after editing, but then all settings of the group, like 
transforms and ids ( or in case of a nested svg the viewbox etc. ) 
are lost , so there is no way you can keep the structure ( and names
 ) you need.

but that is a restriction of existing SVG editors, not an svg 
specific problem.

 Now the problem is how can i structure the svg document in such a 
way 
 that each layer can accomodate one svg document , each has its on 
 viewBox attribute specified ?
 
 Does SVG have any builtin support for layers other than g tag ?
 

in SVG Full you can have nested svg elements, like

svg
  svg viewBox=...
  /svg
/svg

you could also use symbols which also have their own viewBox.
but both dont solve the problem described above.

cheers 
Holger






-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click edit my 
membership
 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[svg-developers] Re: SVG authoring - web based applications

2006-10-11 Thread Holger Wll
Hi Jonathan

i dont have much time currently, but im working on a personal long 
time project in my spare time. its a xul based SVG editor. for that i 
have some shape editors, which ive tested in Firefox , Opera and 
Batik. i would be willing to contribute these for a webbased editor, 
if you like. so far there are editors for:
rect,circle,ellipse,line,polyline,polygon and path(only 
absolute coordinates).
i might find some time to upload what i have so far later, if you 
like.

cheers
Holger






-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click edit my 
membership
 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[svg-developers] Re: GetElementById on foreign elements in Firefox/ASV/Opera

2006-09-13 Thread Holger Wll
Hi Alan

in Firefox and Opera you can implement getElementById yourself with
the DOM3 Xpath evaluate method.
the statement would look something like this:

document.evaluate(//xyz:*[id='bat1'], document, NSResolver, 
XPathResult.ANY_TYPE, null))

for more details see:
http://www-xray.ast.cam.ac.uk/~jgraham/mozilla/xpath-tutorial.html

hth
Holger






-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click edit my 
membership
 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[svg-developers] Re: GetElementById on foreign elements in Firefox/ASV/Opera

2006-09-13 Thread Holger Wll
Hi

here is an example of how it may look like:

http://www.treebuilder.de/svg/evaluate.svg

click on the rect to test.



cheers
Holger






-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click edit my 
membership
 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[svg-developers] Re: 'Native' SVG support in Opera and FF

2006-09-12 Thread Holger Wll
Hi Lance

that extension was build only using a text editor. i have some 
build script which packes the extension. as you allready found out 
both the xpi and the jar file are only renamed zips.
the code is very messy currently. but if you like to hack on it 
anyways, i'm willing to send you my build scripts and talk you throu 
the code.


 What enhancements did you have in mind for it?


i allready have a simple version here which uses a context menue 
instead of the toolbar.
as for improvements i plan:
- it would be nice to be able to draw a rect to which to zoom to
- i like it to be more compatible to the ASV way of doing zoom and 
pan. 
- the options to zoom an pan should be disabled, if zoomAndPan = 
disabled.
- also i was playing with the idea of implementing an UI for the SVG 
view spec.
- yet another useful thing would be to include stelts bookmarklets.
- saving the current state of the SVG or rasterize it and put it into 
the clipboard is possible, too.
- but the most important enhancement would be to clean up the code, 
and comment it. and maybe write a documention for people who want to 
customize it.

you see, there is still a lot to do.
thanks for your interrest
cheers
Holger

p.s.: check this site. its a nice toolbar extension tutorial. there 
are also some tools mentioned.
http://www.borngeek.com/firefox/toolbar-tutorial/







-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click edit my 
membership
 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[svg-developers] Re: 'Native' SVG support in Opera and FF

2006-09-11 Thread Holger Wll
Hi

 
 * Is there even a way to pan or zoom in FF?
 

you could use my Zoom and Pan Extension, which can be found here: 
http://www.treebuilder.de/zoomAndPan/index.htm

its still in an early version, and i dont have much time to update it 
currently, but you can give it a try ;-)

cheers
Holger





-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click edit my 
membership
 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[svg-developers] Re: relative element positioning

2006-08-30 Thread Holger Wll
--- In svg-developers@yahoogroups.com, Nazar [EMAIL PROTECTED] wrote:

 Hello,
 I use DOM to add some of the elements to SVG. Currently I use
 element.setAttribute(x, _x); to position element absolutely.
 
 What I am interested in is  
 how to position elements relative to its parent element ?


do you really mean relative to its parent ? i belive its not possible 
in SVG to NOT position relative to the parent element.
for example :

g transform=translate(5 5)
rect x=0 y=0 width=100 height=100/
/g

the rect will be placed at 5,5 which is 0 0 relative to the g
the only difference here between a g and symbol or nested svg
is that you can not position without transform.
so:

svg x=5 y=5
rect x=0 y=0 width=100 height=100/
/svg

is the same as the first example.
maybe you mean position relative to the previousSibling, which is
not possible directly, this is where you can use the tips given by my 
preposters.

hth
Holger





-
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click edit my 
membership
 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/svg-developers/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/