Hello,
For a new ID card, I need to…
1. Turn a 420x540 pixel picture I took into 3,5 hz x 4,5 vt cm
2. Use that single picture to create a 15 hz x 10cm vt cm contact sheet — so it'll have 4 columns and 2 rows to fit — before getting it printed.
I didn't find if IrfanView suports this. If not, what other free app would you recommend?
Also, does DPI matter when resizing the picture into 3,5x4,5cm, or it's just a matter of how fine-grainted I want it to be (in which, case, 300 DPI is better than the default 72 DPI)?
Thank you.
---
Edit: As a work-around, I ran the following DOS/cmd command to copy the picture several times, and saved the contact sheet as a picture with different DPIs. I'll see what the photo printing machine does with them.
For a new ID card, I need to…
1. Turn a 420x540 pixel picture I took into 3,5 hz x 4,5 vt cm
2. Use that single picture to create a 15 hz x 10cm vt cm contact sheet — so it'll have 4 columns and 2 rows to fit — before getting it printed.
I didn't find if IrfanView suports this. If not, what other free app would you recommend?
Also, does DPI matter when resizing the picture into 3,5x4,5cm, or it's just a matter of how fine-grainted I want it to be (in which, case, 300 DPI is better than the default 72 DPI)?
Thank you.
---
Edit: As a work-around, I ran the following DOS/cmd command to copy the picture several times, and saved the contact sheet as a picture with different DPIs. I'll see what the photo printing machine does with them.
Code:
for /l %A in (1,1,8) do copy ".\input.jpg" ".\output-%A.jpg"
Comment