Re: SVGz

2002-04-08 Thread ma zhenduo
Title: Message   public static void main4(String[] args) throws Exception{    java.io.FileInputStream fis= new FileInputStream("c:\\test.svg");    java.util.zip.GZIPOutputStream zos= new java.util.zip.GZIPOutputStream(  new FileOutputStream("c:\\test.svgz")    );    int n = -1;    whil

Re: problem about "nodeHitAt"

2002-03-20 Thread ma zhenduo
o you think about?   Now, The batik browser can't deal with the mouse event, I expect some master can make "nodeHitAt" take all of those into account.   Ma zhenduo

Re: problem about "nodeHitAt"

2002-03-18 Thread ma zhenduo
can't deal with the mouse event, I expect some master can make "nodeHitAt" take all of those into account.   Ma zhenduo

problem about "nodeHitAt"

2002-03-15 Thread ma zhenduo
There are some problem about "nodeHitAt".  When the filter ( ) is appled on the shape     ( ),     I can't find it by calling "nodeHitAt(rootGraphicsNode)".     But another filter         (                  filter> ) is no problem.   thanks in advance.

Re: The bug about "nodeHitAt" and "transform" had not been gotten rid of.

2002-03-15 Thread ma zhenduo
m: "Thomas E Deweese" <[EMAIL PROTECTED]> To: "Batik Users" <[EMAIL PROTECTED]> Sent: Wednesday, March 13, 2002 8:05 PM Subject: The bug about "nodeHitAt" and "transform" had not been gotten rid of. > >>>>> "mz" == ma z

The bug about "nodeHitAt" and "transform" had not been gotten rid of.

2002-03-12 Thread ma zhenduo
I find there are a bug with batik-1.1.1(18-Dec-2001 ) and batik-1.5beta. GraphicsNode#nodeHitAt can't find these node that has a "transform" attribute.   Exp. d="M248.944 315.572 L250.24 309.285 C252.017 304.596 253.976 298.34 256.317 299.862    C256.262 299.762 252.633 289.809 252.629

The bug about "nodeHitAt" and "transform" had been gotten rid of,had not?

2002-03-12 Thread ma zhenduo
I find there are a bug with batik-1.1.1(18-Dec-2001 ). GraphicsNode#nodeHitAt can't find these node that has a "transform" attribute.   Exp. d="M248.944 315.572 L250.24 309.285 C252.017 304.596 253.976 298.34 256.317 299.862    C256.262 299.762 252.633 289.809 252.629 289.69    L247.154

Re: How to modify the GraphicsNode of GVT in apache batik?

2002-03-07 Thread ma zhenduo
>Are  you using the bridge module for that?       I am not extend the svg tag so I am not entend the bridge module.   >I  need more details on what your filter looks like to answer that question.     I have not a good idea about how to a graphics-node look like being selected.     So, I ch

How to modify the GraphicsNode of GVT in apache batik?

2002-03-06 Thread ma zhenduo
Hi,     I am working with apache batik1.1.1.     In my program,  There are Steps:     1. parse the svg file to the SvgSaxDocument,     2. build SvgSaxDocument to the tree of GraphicsNode     3. transcoder the tree of GraphicsNode to JPEGImage and send to user.         4. find o