请问org.apache.batik包在那里可以下载到?

来源:百度知道 编辑:UC知道 时间:2024/05/03 06:58:41
请给个下载链接。

需导入的类为org.apache.batik.svggen.SVGShape

需运行的程序为
SVGShape rect;
if(attrs.getValue("rx")==null)
rect=new SVGShapeRectangle();
else
{rect=new SVGShapeRoundRectangle();
((SVGShapeRoundRectangle)rect).setRoundX((int)Double.parseDouble(attrs.getValue("rx")));
((SVGShapeRoundRectangle)rect).setRoundY((int)Double.parseDouble(attrs.getValue("ry")));
}
rect.addPosition(new Point2D.Double(
Double.parseDouble(attrs.getValue("x")),
Double.parseDouble(attrs.getValue("y"))));
rect.serPosition(new Point2D.Double(
Double.parseDouble(attrs.getValue("width"))+
Double.parseDouble(attrs.getValue("x")),
Double.parseDouble(attrs.getValue("height"))+
Double.parseDouble(attrs.getValue("y"))),2);
rect.setLineWidth(Integer.parseInt(attrs.getValue("stroke-width")));
if(!attrs.getValue("stroke

已经发过去了。
大概要引入其中5、6个jar文件。
邮箱:qdmmy6@163.com

http://xml.apache.org/xalan-j/index.html