Re: resize pictures received by mailserver

2012-06-16 Thread Arnt Karlsen
On Fri, 15 Jun 2012 18:26:08 +0100, Tixy wrote in message <1339781168.3116.8.ca...@computer2.home>: > On Fri, 2012-06-15 at 04:34 +0200, Arnt Karlsen wrote: > > On Thu, 14 Jun 2012 01:37:18 -0500, Christofer wrote in message > > : > > > > > > It's much simpler to do: > > > > > > > > mogrify -r

Re: resize pictures received by mailserver

2012-06-15 Thread Tixy
On Fri, 2012-06-15 at 04:34 +0200, Arnt Karlsen wrote: > On Thu, 14 Jun 2012 01:37:18 -0500, Christofer wrote in message > : > > > > It's much simpler to do: > > > > > > mogrify -resize '800x600<' testimage.jpg > > > > > > or to limit it to 800 in any dimension > > > > > > mogrify -resize '800x

Re: resize pictures received by mailserver

2012-06-14 Thread Arnt Karlsen
On Thu, 14 Jun 2012 01:37:18 -0500, Christofer wrote in message : > > It's much simpler to do: > > > >  mogrify -resize '800x600<' testimage.jpg > > > > or to limit it to 800 in any dimension > > > >  mogrify -resize '800x800<' testimage.jpg > > > > (These commands preserve aspect ratio and only

Re: resize pictures received by mailserver

2012-06-14 Thread Rob Owens
On Thu, Jun 14, 2012 at 11:47:52AM +0530, Kushal Kumaran wrote: > On Wed, Jun 13, 2012 at 11:17 PM, Rob Owens wrote: > > On Wed, Jun 13, 2012 at 12:45:13PM +0200, Randall wrote: > >> > >> is it possible to have all messages received by the mailinglists MTA > >> scanned for pictures and have these

Re: resize pictures received by mailserver

2012-06-13 Thread Christofer C. Bell
On Thu, Jun 14, 2012 at 1:18 AM, Tixy wrote: > On Wed, 2012-06-13 at 15:08 -0500, Christofer C. Bell wrote: >> The ImageMagick "identify" command could be used on the image to >> gather statistics (such as pixel size) do some math on it, and feed >> that back to mogrify, giving you some consistenc

Re: resize pictures received by mailserver

2012-06-13 Thread Richard Hector
On 13/06/12 22:45, Randall wrote: > is it possible to have all messages received by the mailinglists MTA > scanned for pictures and have these automatically scaled to a default > size before its being redistributed to the receivers on the mailinglist > and subsequently the forum. You'll break any

Re: resize pictures received by mailserver

2012-06-13 Thread Tixy
On Wed, 2012-06-13 at 15:08 -0500, Christofer C. Bell wrote: > The ImageMagick "identify" command could be used on the image to > gather statistics (such as pixel size) do some math on it, and feed > that back to mogrify, giving you some consistency in output. > > Example: > > cbell@circe:~$ iden

Re: resize pictures received by mailserver

2012-06-13 Thread Kushal Kumaran
On Wed, Jun 13, 2012 at 11:17 PM, Rob Owens wrote: > On Wed, Jun 13, 2012 at 12:45:13PM +0200, Randall wrote: >> >> is it possible to have all messages received by the mailinglists MTA >> scanned for pictures and have these automatically scaled to a >> default size before its being redistributed t

Re: resize pictures received by mailserver

2012-06-13 Thread Christofer C. Bell
On Wed, Jun 13, 2012 at 12:47 PM, Rob Owens wrote: > On Wed, Jun 13, 2012 at 12:45:13PM +0200, Randall wrote: >> >> is it possible to have all messages received by the mailinglists MTA >> scanned for pictures and have these automatically scaled to a >> default size before its being redistributed t

Re: resize pictures received by mailserver

2012-06-13 Thread Ralf Mardorf
On Wed, 2012-06-13 at 13:47 -0400, Rob Owens wrote: > The above command will distort the image. Unproportional scaled pics are common, but they are a PITA! -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian

Re: resize pictures received by mailserver

2012-06-13 Thread Rob Owens
On Wed, Jun 13, 2012 at 12:45:13PM +0200, Randall wrote: > > is it possible to have all messages received by the mailinglists MTA > scanned for pictures and have these automatically scaled to a > default size before its being redistributed to the receivers on the > mailinglist and subsequently the

Re: resize pictures received by mailserver

2012-06-13 Thread Randall
On 06/13/2012 02:36 PM, Tony van der Hoff wrote: On 13/06/12 12:45, Randall wrote: hi all, have a question, not really debian specific, but looking for the tools available in debian to do the job. as follows: i'm trying to set up a private synchronised mailinglist/forum. (thinking of a combi

Re: resize pictures received by mailserver

2012-06-13 Thread Tony van der Hoff
On 13/06/12 12:45, Randall wrote: > hi all, > > have a question, not really debian specific, but looking for the tools > available in debian to do the job. > > as follows: > > i'm trying to set up a private synchronised mailinglist/forum. > (thinking of a combination of mailman and tiki forum)

Re: resize pictures received by mailserver

2012-06-13 Thread Randall
On 06/13/2012 01:15 PM, Lars Noodén wrote: I'm not sure it would be a good idea to try to use mail as a surrogate for a file system, especially not a mailing list. You could use MIME Defang to strip the attachments, but it has other capabilities, too: http://www.mimedefang.org/faq /Lars

Re: resize pictures received by mailserver

2012-06-13 Thread Randall
On 06/13/2012 01:12 PM, Ralf Mardorf wrote: thanks for the input: Half OT: Modern MUAs usually support options how to handle pictures. Evolution for example provides - Never load images from the Internet - Load images only in messages from contacts - Always load images from the Internet in my

Re: resize pictures received by mailserver

2012-06-13 Thread Lars Noodén
I'm not sure it would be a good idea to try to use mail as a surrogate for a file system, especially not a mailing list. You could use MIME Defang to strip the attachments, but it has other capabilities, too: http://www.mimedefang.org/faq /Lars -- To UNSUBSCRIBE, email to debian-user-requ..

Re: resize pictures received by mailserver

2012-06-13 Thread Ralf Mardorf
Half OT: Modern MUAs usually support options how to handle pictures. Evolution for example provides - Never load images from the Internet - Load images only in messages from contacts - Always load images from the Internet If your mailing list/forum should be for photograph or something similar, peo

resize pictures received by mailserver

2012-06-13 Thread Randall
hi all, have a question, not really debian specific, but looking for the tools available in debian to do the job. as follows: i'm trying to set up a private synchronised mailinglist/forum. (thinking of a combination of mailman and tiki forum) and i want to avoid having huge pictures showin