Tagged Questions

6
votes
3answers
1k views

Java Image Editor which renders output as source code?

Alex explained what I'm looking for much better than I have: You want an existing program that allows you to draw a picture, captures what you do as you draw, and writes each action as a ...
4
votes
4answers
575 views

Java Text on Image

I am loading an image in bufferedimage and then writing some text on it .After I add text it makes image blurry and text distorted. I have TEXT ANTIALIASING ON . It can be seen as attached.
2
votes
1answer
158 views

Swing : best way to implement zoom functionality in image component

I've create a SWING component JImageEditor which simply displays a picture. The idea is to add more functionality to the component further down the road. One functionality which I've already ...
2
votes
2answers
183 views

Java JPG To Png

I am using a common format all over application for images as png.Any jpg image uploaded still gets saved as png using code as below. java.awt.image.BufferedImage bufferedImage = ...
1
vote
3answers
145 views

java save jpg as png

I have an image on disk which is a jpg file . I want to convert and save it as png and delete original jpg. Whats best way to do this in java . String justNamePng = "something.jpg"; String ...
0
votes
2answers
96 views

Load Buffered Image from other Buffered Image

I am working on image processing . I have a buffered image of fixed size BufferedImage targetImage = new BufferedImage(320, 240,BufferedImage.TYPE_INT_RGB); Lets say Original Buffered image is of ...