What's new

resize images without losing accuracy ?

kmool

TPF Noob!
Joined
May 29, 2007
Messages
1
Reaction score
0
Hi guys

I am new here , so I really dono if this is the right place to post .

I need to resize some images so that I can add them for a book .

For example

Original
21fa548394.jpg




resized

clipboard012pr8.png


The problem is that the resized image is not readable ? any help so that I can resize and read the text ?

Thank you
 
What software are you using to resize the image?
 
Some software will allow you to do what you want. Some will not. If yours will not, then you can resize a copy of the image and save the original for another time and another type of software.
 
You need to remember that you are viewing at 72 DPI and printing is done at 250 so it is crucial that you size the image so that it has enough pixels to print legibly at the actual dimensions you want.

If the original is fully sized as we see it at 1254 - it will flow off the screen when viewed but will print at about 5 inches wide (at 250/bpi).
 
When you resized I think you just selected the image and dragged in the corners.....right? It's better to resize by editing the number of pixels in the image file.

Are you resizing to print or for viewing? If to view on the web, resize to 800 pixels on the longest edge. If for printing what size do you need the image to be?
 
If you look at image size in Photoshop, PaintShop Pro or whatever editor you are using, it generally shows a large inch size as in 30 inches by 20 inches or whatever and 72 pixels per inch in another section.

The approach is to up the pixels per inch as in change 72 to 300 ppi or whatever number that reduces the image size to about your printed page size as in 8 by 10 or perhaps smaller.

The result is better printing quality and an appropriate image size.

skieur
 
If you look at image size in Photoshop, PaintShop Pro or whatever editor you are using, it generally shows a large inch size as in 30 inches by 20 inches or whatever and 72 pixels per inch in another section.

The approach is to up the pixels per inch as in change 72 to 300 ppi or whatever number that reduces the image size to about your printed page size as in 8 by 10 or perhaps smaller.

The result is better printing quality and an appropriate image size.

skieur

You do not need to change the ppi at all. In a case above, just switch off resampling and change the image size to the size you want to print. The ppi will amend itself and so long as it is around 200ppi or higher it'll print perfectly fine. In fact the above image will probably print fine at less than 200ppi. Perhaps if it was a photo you may want higher if you were only printing a 10x8.

What we need to know is the use you are putting the image to.
 
You do not need to change the ppi at all. In a case above, just switch off resampling and change the image size to the size you want to print. The ppi will amend itself and so long as it is around 200ppi or higher it'll print perfectly fine. In fact the above image will probably print fine at less than 200ppi. Perhaps if it was a photo you may want higher if you were only printing a 10x8.

What we need to know is the use you are putting the image to.

When you switch off resampling you lock the aspect ratio or constrain proportions which does necessarily give you the print size you want, so this does not necessarily work. Adjusting the ppi, gets you closer to the size you want and with 8 by 10 when the image involves print 300ppi or greater would be best.

skieur
 
When you switch off resampling you lock the aspect ratio or constrain proportions which does necessarily give you the print size you want, so this does not necessarily work. Adjusting the ppi, gets you closer to the size you want and with 8 by 10 when the image involves print 300ppi or greater would be best.

skieur

Best thing to do then is use the crop tool to adjust the aspect ratio. Set the image size you want (in inches, mm, pixels whatever) in the boxes at the top of the screen. Leave the resolution box blank to avoid interpolation.

If you want a 10x8 just insert the figures into the boxes as 10in x 8in and drag the crop tool over your image. If you need a particular resolution (like 300ppi), you can also add this into the resolution box but be aware this will interpolate (up or down) your image.

I prefer to leave the resolution blank because for small images up to 10x8 even with cropping I generally get more than the 240ppi-300ppi I require. For larger images, because they are viewed from slightly further away, you can print at much lower resolutions without any noticable drop in quality.

I was sort of guessing the ratio of the above image wasn't going to change so that's why I didn't mention this earlier but using the crop tool is the easiest and quickest way to resize any image.

The figure of 300ppi is described as the highest quality you need because your eyes can't resolve any higher than this figure (I'm led to believe) but as I noted above you can still print at lower resolutions and you'd be hard pushed to see any difference between 240ppi and 300ppi. the larger the print the further away it will be viewed and therefore the less the resolution can be. My 19"x13" prints are printed at 180ppi and look amazing. I can hardly see much difference even close up.

Hope this helps.

Regards
Jim
 
What you are showing here is a resize vs resample issue.

There are many ways to change the size of a picture, we can categorize them in two categories:
The first one, known as resize, used for exemple if you change the img size constraints in html, it just takes n pixels out of m if you want to resize from m to n.

The second, will compute every pixels in the new image, as a mathematical result from several pixels in the source image. And here you will find different algorithms (splines, lanczos, hermite,...)

First method should never be used, as you will get poor (but fast) results.

Let's take an example:
if you have a image with a b&w pattern of pixels: bwbwbwbw
and you resize it to 50%
you will get bbbb or wwww
if you resample it to 50%
you will get gggg where g=gray

Independently of the algorithm you use, you will get a blur effect on resized text and lines because of edge smoothing by resampling algorithms.

Ihih.
 
Best thing to do then is use the crop tool to adjust the aspect ratio. Set the image size you want (in inches, mm, pixels whatever) in the boxes at the top of the screen. Leave the resolution box blank to avoid interpolation.

Regards
Jim

Whether you can use the crop tool or not, depends on how close you can come to the correct aspect ratio without using it. Images with text such as the example at the beginning are not very flexible to being cropped. :wink:

skieur
 
What you are showing here is a resize vs resample issue.

There are many ways to change the size of a picture, we can categorize them in two categories:
The first one, known as resize, used for exemple if you change the img size constraints in html, it just takes n pixels out of m if you want to resize from m to n.

The second, will compute every pixels in the new image, as a mathematical result from several pixels in the source image. And here you will find different algorithms (splines, lanczos, hermite,...)

First method should never be used, as you will get poor (but fast) results.

Let's take an example:
if you have a image with a b&w pattern of pixels: bwbwbwbw
and you resize it to 50%
you will get bbbb or wwww
if you resample it to 50%
you will get gggg where g=gray

Independently of the algorithm you use, you will get a blur effect on resized text and lines because of edge smoothing by resampling algorithms.

Ihih.

Not sure what you are saying here but if I'm right it's the second one (resampling) that is the one you should avoid in your scenario. Resizing does not affect the original image (other than cropping some away).
 
Whether you can use the crop tool or not, depends on how close you can come to the correct aspect ratio without using it. Images with text such as the example at the beginning are not very flexible to being cropped. :wink:

skieur

The crop tool does not actually need to "crop" the image. Select the crop tool and open an image (any image).

To resize it, I just enter the size I want the image to be printed at. Say i have a 20D file that is 72ppi and is 48.667 x 32.444. I know the 20D image is a 3:2 ratio so if I want to print this I can enter any 3:2 ratio to get a print. Say I want a 6x4, take the crop tool, insert the figures 6in x 4in in the boxes at the top and select the whole image with the crop tool. Press enter and now look at the image size. It'll be 6x4 @ 584ppi.

So the crop tool does not actually need to "crop" anything. It's being used here to quickly resize your image. It can also quickly resample if you insert a number in the ppi box but I try not to do this too much. Sometimes I'll downsample 6x4s to 300ppi.

It's also a quick way of creating a web sized image. If you want a 600x 400 pixel image just enter the size as 600px x 400px and select the whole image and voila. A small web sized image in seconds (without actually cropping any of the image).

The crop tool has more uses. :D
 
Hi,

The important thing to remember before resizing the image. you should adjust the dpi to 300 for the minimum print quality, before you resize the image area.

If you start with 72dpi and resize the image in scale and then change to 300dpi you will loose quality.

First dpi then image scale size.
 
Hi,

The important thing to remember before resizing the image. you should adjust the dpi to 300 for the minimum print quality, before you resize the image area.

If you start with 72dpi and resize the image in scale and then change to 300dpi you will loose quality.

First dpi then image scale size.

Sorry but this is all totally wrong information. I would strongly suggest reading about resolution before making posts like this as it's obvious you do not understand resolution.

First digital images are made up of pixels not dots so the term is ppi (not dpi). The ppi information means nothing until you come to print your image. What is important in an image is the NUMBER of total pixels. With a 20D I have 3504 x 2336 pixels. This allows me to print almost any size of image I want. resolution and image print size are intrisically linked with the number of pixels.

The 72ppi (or 300ppi for that matter) means nothing without knowing how many pixels you have in your image.

By default Photoshop shows my image to be 48.667 x 32.444 @ 72ppi

Now I can resize the image to 300ppi without changing the number of pixels in my image to get a print size of

3504/300 = 11.68 x 7.7867

Both images will look exactly the same on your screen. Both images have the same number of pixels. Nothing has changed.

Now lets do what Omer suggests!

Again by default Photoshop shows my image to be 48.667 x 32.444 @ 72ppi. if I resample to 300ppi I get a 48.667 x 32.444 @ 300ppi which means my image is now 14600 x 9733.333 pixels in size and will be a HUGE file to work with and the image is likely to be very soft as the software is adding all those extra pixels with where it thinks they should go.

Maybe I'm not explaining too well but there's a zillion links in google relating to this.

I try mostly to print at native resolution (I resize with resampling switched off). I can print 19" x 13" prints @ 180ppi that look as good as a 10 x 8 @ 300ppi or a 6 x 4 ' 584ppi!

The human eye cannot interpolate above 300ppi so that is generally deemed to be the highest quality required for a print however as you print larger, the further away you will most likely view the image and therefore the lower the resolution you can print at.

I use a small equation to work out resolution for various print sizes or the number of pixels I require for a specific print size/resolution.

pixels = ppi x print size
ppi = pixels/print size
Print size = pixels/ppi

Pixels = the number of pixels along one axis of your image
ppi = Image Resolution
Print Size = the resultant print size

Here's a couple of useful links.

http://www.creativepro.com/story/howto/25527.html

http://www.techsoup.org/learningcenter/software/page6045.cfm

http://www.digitalgalleryplus.com/fr_default.htm?/printing__image_resolution.htm
 

Most reactions

Back
Top Bottom