Search found 3 matches

by abhilash.ar
2014-01-15T04:54:29-07:00
Forum: Developers
Topic: Convert 8bit grayscale jpeg image to 24bit jpeg image
Replies: 12
Views: 18699

Re: Convert 8bit grayscale jpeg image to 24bit jpeg image

I used the below command to get the desired output
“ImageMagick-6.8.8-Q16\convert.exe” -density 300 -type bilevel -type TrueColor “Input_Image.jpeg” “Output_Image.jpeg”

Thanks for all your suggestions :)
by abhilash.ar
2014-01-14T22:57:07-07:00
Forum: Developers
Topic: Convert 8bit grayscale jpeg image to 24bit jpeg image
Replies: 12
Views: 18699

Re: Convert 8bit grayscale jpeg image to 24bit jpeg image

Thanks all for your replies :)

I had included '-type truecolor' in my command line. But it is not affecting jpeg images :(
by abhilash.ar
2014-01-14T00:22:54-07:00
Forum: Developers
Topic: Convert 8bit grayscale jpeg image to 24bit jpeg image
Replies: 12
Views: 18699

Convert 8bit grayscale jpeg image to 24bit jpeg image

Using CommandLine approach of ImageMagick I wanted to convert 8bit grayscale jpeg image to 24bit jpeg image maintaining the same image density(dpi). I used the below command, but there is no change in the output image properties and bitdepth is unaltered “ImageMagick-6.8.8-Q16\convert.exe” “Input_Ima ...