Is there anyway to find out an image's DPI using GD?
Can I change an image which is 300 DPI down to 200 DPI?
I am fully aware of that DPI doesn't matter on screen, but these are
to be used for printing, not web :)
I read somewhere that you could do this:
200/300 = 0.667,
new width = width * 0.667
new height = height * 0.667
Will this work for print? When I did this through GD, the DPI changed
to 72. Will this (it being 72 DPI and not 200 DPI like intended)
affect the print quality? (I should probably ask this last question in
a graphic-group)
Can I change an image which is 300 DPI down to 200 DPI?
I am fully aware of that DPI doesn't matter on screen, but these are
to be used for printing, not web :)
I read somewhere that you could do this:
200/300 = 0.667,
new width = width * 0.667
new height = height * 0.667
Will this work for print? When I did this through GD, the DPI changed
to 72. Will this (it being 72 DPI and not 200 DPI like intended)
affect the print quality? (I should probably ask this last question in
a graphic-group)
Comment