Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 to resize it resizes but then goes back to it's previous size. Can someone help me, please?

svg.setPreferredSize(new Dimension(700,700));
svg.setSize(new Dimension(700,700));
this.add(svg, BorderLayout.NORTH);
this.setSize(1000, 1000);

My class extends JPanel. I'm using batik.

share|improve this question
please show what layout you are using in your sscce. – trashgod Jul 14 '11 at 17:48
i used: BorderLayout b=new BorderLayout(); this.setLayout(b); but i found a solution to this problem. anyway, thanks for the will to help :D – Invader Zim Jul 15 '11 at 9:59
If you think it will help others, its OK to answer your own question. More in the faq. – trashgod Jul 15 '11 at 10:06

1 Answer

up vote 0 down vote accepted

I added svg to JSVGScrollPane. Now it works fine, resizes well and i have scrollbars when svg is bigger. It took me day and a half of experimenting with JPanels, JScrollPanes, but this is the best solution. [:

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.