<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comentarios en: Redimensiona imagenes por lotes en Gnome</title>
	<atom:link href="http://www.pablasso.com/2008/08/29/redimensiona-imagenes-por-lotes-en-gnome/feed" rel="self" type="application/rss+xml" />
	<link>http://www.pablasso.com/2008/08/29/redimensiona-imagenes-por-lotes-en-gnome</link>
	<description>Sobre desarrollo de software y ñoñadas</description>
	<lastBuildDate>Sat, 11 Feb 2012 02:01:28 +0300</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Por: hbautista</title>
		<link>http://www.pablasso.com/2008/08/29/redimensiona-imagenes-por-lotes-en-gnome#comment-43975</link>
		<dc:creator>hbautista</dc:creator>
		<pubDate>Mon, 01 Sep 2008 19:31:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.pablasso.com/?p=497#comment-43975</guid>
		<description>Concuerdo con Gunnar en la shell te puedes crear scripts sacando el máximo provecho a ImageMagick.

Por otro lado, yo tengo en uso los Scripts de nautilus de Javielinux que hacen básicamente lo mismo que el que recomiendas, y tiene muchas opciones más.

http://nautilus-scripts.javielinux.com/

Saludos..</description>
		<content:encoded><![CDATA[<p>Concuerdo con Gunnar en la shell te puedes crear scripts sacando el máximo provecho a ImageMagick.</p>
<p>Por otro lado, yo tengo en uso los Scripts de nautilus de Javielinux que hacen básicamente lo mismo que el que recomiendas, y tiene muchas opciones más.</p>
<p><a href="http://nautilus-scripts.javielinux.com/" rel="nofollow">http://nautilus-scripts.javielinux.com/</a></p>
<p>Saludos..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Gunnar</title>
		<link>http://www.pablasso.com/2008/08/29/redimensiona-imagenes-por-lotes-en-gnome#comment-43956</link>
		<dc:creator>Gunnar</dc:creator>
		<pubDate>Fri, 29 Aug 2008 16:49:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.pablasso.com/?p=497#comment-43956</guid>
		<description>Mucho más rápido...

&lt;pre lang=&quot;bash&quot; line=&quot;1&quot;&gt;
for i in *.jpg; do convert -rotate 90 $i ${i/.jpg/rotado.jpg}; done
&lt;/pre&gt;

Claro, puedes ponerte un poquito más creativo - a fin de cuentas, tener un shell programable te da la libertad de hacerlo:

&lt;pre lang=&quot;bash&quot; line=&quot;1&quot;&gt;
for i in *.jpg
  do
    for deg in 45 90 135 180
      do
        convert -rotate $deg $i ${i/.jpg/.$deg.jpg}
      done
  done
&lt;/pre&gt;

Te genera las imagenes rotadas a 45, 90, 135 y 180 grados. Y, obviamente, tienes toda la cantidad de conversiones, transformaciones y efectos extraños que te ofrece imagemagick - 200 opciones diferentes, muchas de ellas aceptan argumentos.
El shell es más bonito y eficiente que el GUI!</description>
		<content:encoded><![CDATA[<p>Mucho más rápido&#8230;</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash"><span style="color: #000000; font-weight: bold;">for</span> i <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000; font-weight: bold;">*</span>.jpg; <span style="color: #000000; font-weight: bold;">do</span> convert -rotate <span style="color: #000000;">90</span> <span style="color: #007800;">$i</span> $<span style="color: #7a0874; font-weight: bold;">&#123;</span>i<span style="color: #000000; font-weight: bold;">/</span>.jpg<span style="color: #000000; font-weight: bold;">/</span>rotado.jpg<span style="color: #7a0874; font-weight: bold;">&#125;</span>; <span style="color: #000000; font-weight: bold;">done</span></pre></td></tr></table></div>

<p>Claro, puedes ponerte un poquito más creativo &#8211; a fin de cuentas, tener un shell programable te da la libertad de hacerlo:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="bash"><span style="color: #000000; font-weight: bold;">for</span> i <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000; font-weight: bold;">*</span>.jpg
  <span style="color: #000000; font-weight: bold;">do</span>
    <span style="color: #000000; font-weight: bold;">for</span> deg <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000;">45</span> <span style="color: #000000;">90</span> <span style="color: #000000;">135</span> <span style="color: #000000;">180</span>
      <span style="color: #000000; font-weight: bold;">do</span>
        convert -rotate <span style="color: #007800;">$deg</span> <span style="color: #007800;">$i</span> $<span style="color: #7a0874; font-weight: bold;">&#123;</span>i<span style="color: #000000; font-weight: bold;">/</span>.jpg<span style="color: #000000; font-weight: bold;">/</span>.<span style="color: #007800;">$deg</span>.jpg<span style="color: #7a0874; font-weight: bold;">&#125;</span>
      <span style="color: #000000; font-weight: bold;">done</span>
  <span style="color: #000000; font-weight: bold;">done</span></pre></td></tr></table></div>

<p>Te genera las imagenes rotadas a 45, 90, 135 y 180 grados. Y, obviamente, tienes toda la cantidad de conversiones, transformaciones y efectos extraños que te ofrece imagemagick &#8211; 200 opciones diferentes, muchas de ellas aceptan argumentos.<br />
El shell es más bonito y eficiente que el GUI!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: linuxfera.net</title>
		<link>http://www.pablasso.com/2008/08/29/redimensiona-imagenes-por-lotes-en-gnome#comment-43955</link>
		<dc:creator>linuxfera.net</dc:creator>
		<pubDate>Fri, 29 Aug 2008 13:14:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.pablasso.com/?p=497#comment-43955</guid>
		<description>&lt;strong&gt;Redimensiona imagenes por lotes en Gnome...&lt;/strong&gt;

nautilus-image-converter es una extensión a Nautilus que te permite redimensionar imágenes por porcentajes, por tamaños fijos o al personalizados. Ademas te permite rotar fotos por cuantos grados necesites....</description>
		<content:encoded><![CDATA[<p><strong>Redimensiona imagenes por lotes en Gnome&#8230;</strong></p>
<p>nautilus-image-converter es una extensión a Nautilus que te permite redimensionar imágenes por porcentajes, por tamaños fijos o al personalizados. Ademas te permite rotar fotos por cuantos grados necesites&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Bucio</title>
		<link>http://www.pablasso.com/2008/08/29/redimensiona-imagenes-por-lotes-en-gnome#comment-43953</link>
		<dc:creator>Bucio</dc:creator>
		<pubDate>Fri, 29 Aug 2008 05:33:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.pablasso.com/?p=497#comment-43953</guid>
		<description>wii graxias io soy de esa parte de esa gente bonita que usa jenume :D</description>
		<content:encoded><![CDATA[<p>wii graxias io soy de esa parte de esa gente bonita que usa jenume :D</p>
]]></content:encoded>
	</item>
</channel>
</rss>

