I have an image to upload . I set the size of it. But any client can uploading any type and any size photo. my request is that, when a client send an image, then automatically compressing or resizing the sets the image size.
i sets the image size is 190X200. this is fixed size. but the client can uploading any size of file. that receiving after, without any defect of the picture, and adjusting to the 190X200 size.
anyone to know this please give me the code
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35232
7
posted
0
There are several ways to resize an image. I assume you have considered what a fixed size means to image quality if the uploaded image does not have the same aspect ratio or is smaller than the target size.
There are a couple of ways to load images. ImageIO is one class that can do it for you. Its read method will give you a BufferedImage from any InputStream.
To scale an Image, you can use the getScaledInstance method.