Page 1 of 1

Reduce the Memory of a image from 50GB to 276KB

Posted: 2014-01-19T11:06:55-07:00
by helloworld
Hello All,

What is the command to resize a image which is 3000x3000 pixels with a memory of 50GB to 100x100 pixels with the memory reduced to 276kb.

Re: Reduce the Memory of a image from 50GB to 276KB

Posted: 2014-01-19T12:03:41-07:00
by fmw42
convert image -thumbnail 100x100 -type palette result

but it also depends upon the (input and) output format and whether the input is color or grayscale, etc. You did not specify that. Also it is a good idea to provide your IM version and platform.

Re: Reduce the Memory of a image from 50GB to 276KB

Posted: 2014-01-24T12:47:11-07:00
by helloworld
Worked perfectly thanks a lot Fred.