| | |
Images
![]() |
•
•
Join Date: Jun 2004
Posts: 609
Reputation:
Solved Threads: 7
Hi everyone,
I have a bit of a problem converting a JTextPane to an image.
I am able to convert the JTextPane to a PNG image but its quality is really bad. Is there a way that i can convert my JTextPane to a high quality image.
The type of image format does not matter
Here is what i have so far
I hope someone can help with this problem
Any help is greatly appreciated
Thank You
Yours Sincerely
Richard West
I have a bit of a problem converting a JTextPane to an image.
I am able to convert the JTextPane to a PNG image but its quality is really bad. Is there a way that i can convert my JTextPane to a high quality image.
The type of image format does not matter
Here is what i have so far
Java Syntax (Toggle Plain Text)
public void export(JComponent Component) { File f1 = new File("C:\\Temp.PNG"); Dimension Size5 = Component.getSize(); BufferedImage Image1 = new BufferedImage(Size5.width, Size5.height, BufferedImage.TYPE_INT_ARGB); Graphics2D g2 = Image1.createGraphics(); g2.setRenderingHint (RenderingHints.KEY_INTERPOLATION,RenderingHints.VALUE_INTERPOLATION_BICUBIC); Component.paint(g2); try { ImageIO.write(Image1, "PNG", f1); } catch (Exception e) { e.printStackTrace(); } }
I hope someone can help with this problem
Any help is greatly appreciated
Thank You
Yours Sincerely
Richard West
![]() |
Similar Threads
- Generate Thumbnail images on the fly. (PHP)
- Pixelated Images in IE6 with clean install? (Windows NT / 2000 / XP)
- images no longer animated (Web Browsers)
- no images (Web Browsers)
Other Threads in the Java Forum
- Previous Thread: Creating data access layer in java
- Next Thread: simple calculator help
| Thread Tools | Search this Thread |
android api applet application apps array arrays automation awt bidirectional binary birt bluetooth businessintelligence busy_handler(null) card chat class classes client code collision columns component constructor crashcourse database designadrawingapplicationusingjavajslider draw eclipse error errors eventlistener exception expand fractal game givemetehcodez graphics gui guidancer html ide image inetaddress integer intellij j2me java javadoc javafx javamicroeditionuseofmotionsensor javaprojects jme jni jpanel jtree julia linux list loop machine map method methods mobile mobiledevelopmentcreatejar myaggfun netbeans newbie oracle plazmic print problem program programming project radio recursion scanner server set sharepoint smart sms smsspam sort sortedmaps sql string subclass support swing textfield threads tree unlimited utility webservices windows





