Tagged Questions
6
votes
1answer
762 views
Scaling an SVG in Java
I'm attempting to scale an image, modify it, and then output to another image format. So far, I've been using the apache batik library. For simple conversion, this is easy. For clipping the svg, this ...
6
votes
1answer
3k views
Smallest Java SVG Engine
What is the smallest Java SVG engine (least/smallest jars) that actually works? If your answer is Batik, what is the minimal dep. graph for getting this to work in a simple Java application?
I've ...
4
votes
1answer
235 views
How to paint SVG images efficiently in Java?
Reference: How do you paint efficiently and effectively when rotating a BufferedImage in Java?
In the referenced question I asked about quality regarding transformations of rasterized images. Someone ...
3
votes
1answer
183 views
How to convert SVG into PNG on-the-fly
I try to convert an svg into PNG. the svg document is coming from a server as an Inputstream.
First, I convert the svg stream into byte array with:
byte[] streamBytes = ...
3
votes
1answer
447 views
How do I superimpose one SVG image onto another using Apache Batik?
I have 2 SVG files I need to overlay using Batik. One file serve as the background image and is 308px by 308px while the second file (260px by 260px) is the foreground image that must be centered ...
3
votes
2answers
1k views
Swing & Batik: Create an ImageIcon from an SVG file?
Simply put, I'm looking for a way to make an ImageIcon from an SVG file using the batik library. I don't want to have to raster the SVG to disk first, I just want to be able to pull an svg out of the ...
2
votes
0answers
115 views
How to Make Transparent SVG Transparent in Java?
I have SVG file that actually empty, that have no element, yet. I will manipulate it in the java code by adding element. The SVG file will be inserted in a scrollpane. The problem is even the SVG file ...
2
votes
1answer
813 views
How to resize an svg (with batik) and display it?
I have a svg file of 100x100 pixels (for example).
I am using Batik.
If I do a :
JSVGCanvas svg = new JSVGCanvas();
[...]
svg.setSize(10,10);
It will only show this part of the picture and not the ...
2
votes
2answers
569 views
Looking for SVG drawing application, open source based on Java apache batik library
Can you recommend a free, open source, drawing application, like Inkscape, but written in Java based on the Apache batik code library?
1
vote
2answers
128 views
Having problems with Apache Batik library on AWS ElasticBeanstalk Instance
I am using AWS Elasti Beanstalk to power one of my apps. In this I need to export a svg document to png,jpg, pdf etc. For this I use Apache Batik library. This provides excellent output on my local ...
1
vote
1answer
126 views
batik - id-attribute occurs twice in saved document
I use Batik two load one svg-document and add an element form another
document to it, but the id-attribute occurs in the saved document in some attributes now
twice. So when I'am trying to open the ...
1
vote
1answer
2k views
create an SVG image with embedded base64 string from another svg image with elements
Hi I have an svg file that contains several elements (like path, circles, rectangles, etc..).
I'd like to convert that svg file to an svg with embedded base64 data instead of multiple elements. is it ...
1
vote
1answer
70 views
Disable logging with Batik Transcoder?
I'm using the batik transcoder for svgs, and every time I convert an SVG image, it produces output on standard out. I'm assuming it's using a logging package of some kind. How do I disable this ...
1
vote
1answer
841 views
Get empty image when transcoding SVG to PNG
I'm trying to generate an SVG image and then transcode it to PNG using Apache Batik. However, I end up with an empty image and I can't see why.
I use the Document from SVGDomImplementation as the ...
1
vote
1answer
421 views
Finding objects under mouse in a JSVGCanvas from Batik
I have a JSVGCanvas object from the Batik library from java. In my application, I am rendering several objects in a schematic. I require to know what component is below the mouse so I can render an ...
1
vote
2answers
2k views
“SAX2 driver class org.apache.crimson.parser.XMLReaderImpl not found” when using Batik in a webapp on Tomcat
This is possibly related to a classpath problem, but I'm really not sure at this point, since I don't get this error on some machines.
The error at the top of the stack is SAX2 driver class ...
0
votes
1answer
44 views
Can I use only the Transcoder of the Batik library without all other Batik code and dependencies?
I am trying to use the Batik library source, I only want to use the transcoder to convert SVG files to PNG or JPEG only. The distribution version of the Batik Rasterizer is about 55k but when I export ...
0
votes
0answers
31 views
how to generate jfreecharts in svg format and display it on jsp
I want to know how to generate jfree chart images in svg format, so that i can perform zoom in/out, tool tip, clicking of chart. currently i am rendering it as png using servlet. please help me.
...
0
votes
0answers
46 views
SVG generation with FOP doesn't work
On one server, and on my Windows laptop, producing PDFs with this method works fine:
http://www.databasesandlife.com/svg-to-pdf/
But on the other server I get this error:
...
0
votes
0answers
44 views
Batik's animation and heavy cpu load
we are using Apache Batik in a project for displaying SVG graphics in a Swing application. When we use the animation tag of SVG, it results in heavy cpu load.
I know there are methods to limit the ...
0
votes
1answer
114 views
Resizing svg in a panel in java
I have a svg file in a panel and it is displayed. The problem occurs when i try to change the size of it (svg). I tried setSize, setPreferredSize and resize but none work. I noticed that when i try ...
0
votes
3answers
298 views
JPanel problem - repaint on resize on normal look
I have strange problem with JPanel. I am trying to show svg image ( SVG_class extends JSVGCanvas from batik jar). Problem is when I start this program I get this
and when I resize with pointer ...
0
votes
0answers
135 views
Draw text in the center of a closed SVG path element in java swing with batik
I am working on an Java(swing)/SVG application using the batik framework. The application has an SVG document with several irregular closed paths. I have already registered mouse events, rotated it ...
0
votes
1answer
46 views
Attribute Modifications in Graphical Interface in Java SVG
I want to render java objects in some graphical format with the domain specific icons/terminology.
2 most important feature i would like in this graphics mode are
1) Ability to change an attribute of ...
0
votes
1answer
298 views
Batik Swing SVG: Events on Objects in Canvas
I'm looking for a java library to use SVG for work flow presentation.
My question: is Batik this dynamic that you can move the objects in a svg drawing? E.g. moving icons in a canvas. Something like ...
0
votes
1answer
787 views
SVG rendering in Java using SWT - Batik too slow
I am having performance issues with Batik when I try to render SVG files using SWT. It seems like a very bloated library but the only other one I could find was SVGSalamander and it looks like it's ...
0
votes
2answers
436 views
How to set a transparent Icon from a transparent SVG file
I have a transparent SVG file.
I would like to use it as the icon of a JLabel, via setIcon().
I use Batik for SVG, but I don't know how to do this.
Can you help me ?
Thanks :)
0
votes
1answer
393 views
Writing unicode characters with Batik doesn't work
I am writing a project with Batik, which is for multi-language image. Therefore I need signs like "sigma" or "alpha". I have to write the character as text - not as a polygon or as a glyph - because ...
0
votes
4answers
619 views
Learning resources and tutorials for using the Java Batik Library
I am using the Batik library, which is very useful to display SVG graphics in Java. For the basic use case of displaying and rendering an SVG document is quite simple to use. However, I want to do ...