Batik is a Java-based toolkit for applications or applets that want to use images in the Scalable Vector Graphics (SVG) format for various purposes, such as display, generation or manipulation.

learn more… | top users | synonyms

0
votes
0answers
7 views

Raphael arrow heads not shown up in pdf

I am creating a chart using raphael.js. In my chart there are rectangles which are connected using arrows. I am exporting this svg using Raphael Export and then converting this svg string to pdf using ...
0
votes
0answers
66 views

Load SVGdocument from a svg file

I'm trying to load some svg files and save each in JSVGCanvas[] svgCanvas, so I can reach them later in the program. What I did so far is the followings: String parser = ...
3
votes
1answer
35 views

HIghcharts export server hosting ph-batik

I had configured php-batik export server to save the charts in pdf format via svg but in the pdf file charts title is not coming in the same format as in the svg file I m using java 1.7 version ...
0
votes
0answers
18 views

Enhance quality of image created using batik JPEGTranscoder

I have a SVG file that I am transcoding into a JPEG file in order to add it to a PDF file as an image. The SVG file has the graph as I want. But after transcoding it into an image, the image quality ...
0
votes
0answers
25 views

How do I best implement HMI editor in Java? [closed]

HMI is human machine interface which is an interface for controlling machines. I want to make an HMI editor which features vector graphics and resizable screens. There is already a proper product in ...
-1
votes
0answers
22 views

SVG transcoding in to PDF Paging using batik project

I am trying to create paging while i am converting my svg code to pdf using apache batik transcoder it is working very fine for all images but without paging beacuse of this it is losing image after ...
0
votes
1answer
32 views

Highchart / Easyphp / Batik

I'm running both OS : mac os X and windows xp. On mac os X, i'm running MAMP and I used the solution Batik to export my chart (highchart) on my own server. Everything is doing well. On windows xp, ...
0
votes
0answers
42 views

Batik SVGGraphics2D nullpointerexception when drawing image

I'm trying to use the Batik library to draw a BufferedImage to a SVG file. I have very similar code working fine for EPS/PS files, but for some reason the following code: // Get a DOMImplementation ...
0
votes
0answers
57 views

How can I get the width, height and baseline of some character in a TrueType Font with a CSS Point to Pixel conversion?

Hello, I am in need of measuring the width and height of characters in a certain font, because I need to center vertically/horizontally some text inside a SVG circle. I generate the SVG using Java ...
1
vote
0answers
26 views

Batik/Rhino JavaScript support?

Just want to get a sanity check on this before wasting too much time - does Batik actually have usable JavaScript support in its SVG display and rasteriser? Problem: I've got code which generates SVG ...
0
votes
1answer
36 views

how to make interactive svg with apache batik?

My java app needs to create svg files with some hover texts and bit interactivity. Does batik have apis for this? I could see that rhino engine can be bundled with batik classes. But i believe it is ...
0
votes
1answer
29 views

Converting SVG with parameters to another file type?

on my website, I have an SVG image which is generated using parameters from a form that a user selects. All works fine, but I'm struggling to think of a way to do the next part. Once the user is ...
0
votes
0answers
101 views

Raster Bitmap to Vector

My Goal Trace the Raster Image (png,jpeg,bmp) To Vector what i have done so far i use delineate code in my application which uses potrace to trace the vector paths. i have successfully complete ...
0
votes
0answers
42 views

Resize SVG Path(s) with Physical Mesaurement Unit

My GOAL convert a Paper Pattern of Shoe shape in to Digital Scalable format by preserving its physical measurement with target printer DPI taken into account I have a paper Pattern of a Shoe Side ...
0
votes
0answers
102 views

upscaling images in batik

what i am trying to achieve is , please have a look at following image, i want to re size (up scale) this image to 4000 * 3500 in pixel with 400 DPI without any quality loss. so, i read about SVG ...
0
votes
1answer
91 views

Strange CSS Exception while loading , updating and transcoding svg document using apache batik

I am loading svg file through following lines of code into my application parser = XMLResourceDescriptor.getXMLParserClassName(); ...
0
votes
1answer
103 views

OutofMemory while resizing svg file Using Apache Batik

i have generated svg file, using following code, public class TestSVGGen { static BufferedImage img; public void paint(SVGGraphics2D g2d) { g2d.setPaint(Color.red); ...
0
votes
1answer
209 views

java.lang.NoClassDefFoundError while reading a svg file as BufferedImage

i have a .svg file to create a Map which will have Listeners relevant to boundaries (i guess its called "nodes" of a scalable vector graphic). However, i'm trying to add this file as a BufferedImage ...
1
vote
2answers
333 views

JAVA: SVG to JPG converter

is there any libraries to convert SVG to JPG ? else than BATIK ? i used BATIK but i found some problems like this exception : java.lang.NullPointerException at ...
0
votes
0answers
18 views

Check empty area SVG

I am developing a word cloud using the library Apache Batik. For this reason, I need a method/function that checks if a defined area is empty or no. For example, I have to check if the area in the ...
0
votes
0answers
31 views

BatikDomExtension incompatible with DomExtension

I'am facing a curious problem with my application. My project works fine if i run it as application on eclipse(RAD 8.5) and generat also the wanted report as pdf. As soon as i deploy my war file on ...
1
vote
0answers
32 views

java link activated event behavior difference

Good evening everyone; I have JSVGCanvas (component from batik framework) on i am displaying an svg document on canvas with links. I would like to open a new window(jframe) on my swing when a link ...
0
votes
1answer
60 views

Why does Batik dislike the “d” attribute in my SVG image?

My simple SVG image (below) seems to work in some applications, but not others. In a Java/Batik app, for instance, complains that - 'The attribute "d" of the element <path> is invalid.' Can ...
0
votes
0answers
107 views

Change size of SVGDocument in Batik

I am trying to resize an SVGDocument inside a JSVGCanvas by modifying it's width, height and viewbox attribute. But when I do this, the document seems to zoom in. This happens even if I don't even ...
0
votes
2answers
41 views

Batik: IllegalStateException when I call invokeLater from a thread

I already posted a similar question here: Batik IllegalStateException when resizing the JComponent containing the JSVGCanvas. I could however reduce the problem to a minimal set of code. Maybe that ...
0
votes
1answer
103 views

adding items to existing svg image

Good afternoon everyone; I am currently working on a project in Java try to create a desktop tool. My question is I am now a using a framework(plantuml) to obtain svg formatted graph. However, I want ...
2
votes
1answer
67 views

Strange behaviour of swing/batik

I am writing a drawing application, which uses the JSVGCanvas class of the batik framework. The contentpane of my application is a JLayeredPane, which holds several JPanels stacked on top of each ...
0
votes
1answer
15 views

Checking SVG Upload using Batik

I try to examine uploaded SVG graphics and look for image elements to read there href attribute. I am using Batik 1.7 to search for corresponding elements. By using 'getElementsByTagName' / ...
0
votes
1answer
81 views

Batik IllegalStateException when resizing the JComponent containing the JSVGCanvas

My program seems to work quite well, but I keep getting "IllegalStateExceptions: RunnableQueue not started or has exited" from time to time, when I try to resize my component. I have set the ...
0
votes
0answers
274 views

converting svg to png with batik

I want to convert svg file to png format Once I run the page only blank png file is created So how can I resolved this? My JSP code: String svg_URI_input = new ...
0
votes
1answer
68 views

How to scale a word cloud?

I'm working on word cloud generation. My words should appear in a rectangle of (0, 0, w, h), where w is the max width and h is the max height. I already have an algorithm for generating the word ...
0
votes
1answer
31 views

querySelector in Apache Batik

I'd like to query an Apache Batik DOM for elements which match a CSS selector. Does Batik provide an alternative to any of the following browser DOM methods? Document.querySelector ...
0
votes
0answers
91 views

How to change attribute of an SVG image in batik while in program?

I want to be able to change the attribute of an SVG document while the program is running by pressing a button (eg turn a black square into blue by changing the fill color). Here is my code: ...
0
votes
1answer
97 views

Create SVG file from many small svg files in java

I'm currently working with JavaFX 2.2 und Batik. I have an application with a pane on which you can drag multiple SVG pictures. This is all working out, and the svg code of each picture is stored in ...
0
votes
1answer
50 views

Gradient paints not working in Apache Batik's svggen

I am using Apache Batik's SVGGraphics2D class to bridge my swing drawing calls to SVG. It works fine with the exception that LinearGradientPaint elements are ignored completely. The setup code is ...
0
votes
0answers
66 views

How to make batik start GVT Rendering in the background?

I'm trying to make my application render all SVG images on application start and then show the main frame. When I start my application, it loads several SVG images. Unfortunately, currently it shows ...
0
votes
2answers
141 views

Highchart Generate SVG off-screen with Java

I am wondering if there is a Java API for HighChart (Not the exporting API) which can generate the svg based on the supplied parameters which can then be later converted to png using Batik without ...
0
votes
1answer
113 views

JSVGCanvas.getSVGDocument() is returning null?

I seem to have a problem working with batikSVG for manupilating SVG using Java. I can display the SVG just fine on the JSVG Canvas but when I try to the canvas's SVGDocument using getSVGDocument it ...
0
votes
2answers
85 views

SVG generation fails from command line, but is successful with NetBeans

I have a strange issue. I'm currently trying myself out with svg generation and I use the following code to generate an svg file: public class SVGGenerator { private static void ...
1
vote
0answers
58 views

How to relatively size SVG fonts based upon a bounding box and specific word

I need to draw some text inside a rectangle, using SVG. I have icons defined by paths, and I have arbitrarily chosen text canvas areas for each icon, based upon the shape of the icon. What I need to ...
0
votes
0answers
64 views

Adding custom attribute to an element which is to be drawn

I am using the api 'drawString' of 'SVGGraphics2D' to draw a text element. Now my requirement is to add a custom attribute on the 'text' element which is drawn by the mentioned api. I have tried ...
0
votes
0answers
90 views

how to find package org.w3c.dom.svg?

I cannot seem to find it and Netbeans says that the package does not exist? Which jar do I have to get to have package org.w3c.dom.svg? I'm using batik SVG
0
votes
0answers
127 views

Extracting path definitions from SVG files in absolute coordinates using Batik

I need to solve the following problem: Given an .svg file and a node id (assumed to be an id of a path node), extract the path definition from that node in a form that can be used for further ...
0
votes
2answers
224 views

Using Custom Element Factory When Reading SVG File Using Batik

I am trying to read a largish (1 MB) svg file that is exported from an old program. I do not have access to this program or the data. I only have this exported svg file and I will probably have to ...
0
votes
0answers
102 views

SVG to image quality reducing

My requirement is to convert .SVG to image. The SVG files are generated by internal tool. I am trying these by 2 approaches: Converting SVG to image using JPEG transcoder. My SVG files are complex ...
0
votes
1answer
130 views

Create a non-buffered java.awt.Image from an SVG file

I have some existing code which looks a lot like the solution on Swing & Batik: Create an ImageIcon from an SVG file? But the destination for my image is PDF, and it bugs me that when you zoom ...
0
votes
2answers
94 views

Apache Batik - Exception: “content not allowed in prolog”

I am getting the an exception when I try to convert the above pdf to jpg with the message, "content not allowed in prolog". I am performing a two-step opertaion converting svg to pdf and pdf to image. ...
0
votes
0answers
41 views

Repainting after failed rendering

I am painting a SVGCanvas (using batik lib). Every now and then rendering fails. I tried repainting the canvas after this happens but it doesn't help. I tried repainting with and without waiting for ...
0
votes
1answer
134 views

Checking and deleting attributes in SVG using Batik in Jaba

The question basically says it all. How can I check if SVG has a viewBox attribute? I am using Batik lib. I need this because I need to (at least) notify the user that there is a viewBox attribute. ...
1
vote
3answers
236 views

jQuery ajax seems to alter SVG data sent to coldfusion server

I'm using $.ajax() to send a string to a coldfusion server where it is stored in a table. When I later query and try to use that data I get an error; "null Enclosed Exception: Invalid byte 2 of 3-byte ...

1 2 3