Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[GIMP] Come modificare più immagini contemporaneamente
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian)
View previous topic :: View next topic  
Author Message
rabside
Tux's lil' helper
Tux's lil' helper


Joined: 03 Jun 2004
Posts: 86

PostPosted: Thu Sep 02, 2004 10:48 am    Post subject: [GIMP] Come modificare più immagini contemporaneamente Reply with quote

Ciao a tutti!
Avrei un semplice quesito da porvi: dispongo di molte immagini aventi la stessa dimensione in pixel. vorrei fare in modo che la dimensione stampabile sia la stessa per tutti senza dover andare a modificare le proprietà di ogni singola immagine. E' possibile?

immagino che ci sia qualche scriptino da utilizzare, nessuno conosce qualche link?

thx a lot
sciau
Back to top
View user's profile Send private message
fedeliallalinea
Administrator
Administrator


Joined: 08 Mar 2003
Posts: 30964
Location: here

PostPosted: Thu Sep 02, 2004 10:49 am    Post subject: Reply with quote

Con image magik c'e' un post al riguardo vedi di fare una ricerca se non ti posto lo script
_________________
Questions are guaranteed in life; Answers aren't.
Back to top
View user's profile Send private message
rabside
Tux's lil' helper
Tux's lil' helper


Joined: 03 Jun 2004
Posts: 86

PostPosted: Thu Sep 02, 2004 11:58 am    Post subject: Reply with quote

forse è meglio che mi posti lo script perche ho cercato ma con scarsi risultati... casomai, se proprio proprio mi studio come usare il comando convert
Back to top
View user's profile Send private message
fedeliallalinea
Administrator
Administrator


Joined: 08 Mar 2003
Posts: 30964
Location: here

PostPosted: Thu Sep 02, 2004 12:15 pm    Post subject: Reply with quote

Code:
#!/bin/sh

for file in *.jpg
do
    convert -size 3008x2000 "$file" -resize 1024x768 +profile "*" resize."$file"
done

_________________
Questions are guaranteed in life; Answers aren't.
Back to top
View user's profile Send private message
rabside
Tux's lil' helper
Tux's lil' helper


Joined: 03 Jun 2004
Posts: 86

PostPosted: Thu Sep 02, 2004 4:34 pm    Post subject: Reply with quote

perfetto! grassie mille!
dopo faccio un po di prove thx!
Back to top
View user's profile Send private message
Peach
Advocate
Advocate


Joined: 08 Mar 2003
Posts: 3686
Location: London, UK

PostPosted: Fri Sep 03, 2004 12:19 am    Post subject: Reply with quote

Suggerisco sia convert come usato nello script di fedeli, altrimenti anche mogrify facente parte dello stesso pacchetto di imagemagick.
Quote:
EXAMPLES
To convert all the TIFF files in a particular directory to JPEG, use:

mogrify -format jpeg *.tiff

To convert a directory full of JPEG images to thumbnails, use:

mogrify -size 120x120 *.jpg -resize 120x120 +profile "*"

_________________
Gentoo user since 2004.
"It's all fun and games, until someone loses an eye" - mom
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum