Search found 6 matches

by wsielski
2016-10-27T02:39:35-07:00
Forum: Users
Topic: Convert to 32-bit depth BMP
Replies: 7
Views: 26076

Re: Convert to 32-bit depth BMP

But there is no difference between:


$ identify test_clean32.bmp
test_clean32.bmp BMP 4032x3024 4032x3024+0+0 8-bit sRGB 36.58MB 0.140u 0:00.130
$ identify test_clean24.bmp
test_clean24.bmp BMP 4032x3024 4032x3024+0+0 8-bit sRGB 36.58MB 0.140u 0:00.129


Which I suppose should differ when test ...
by wsielski
2016-10-27T02:10:52-07:00
Forum: Users
Topic: Convert to 32-bit depth BMP
Replies: 7
Views: 26076

Re: Convert to 32-bit depth BMP

Well I'm not really sure then how to test if it's 8bit/24bit/32bit depth.

The result of generating and identifying 24bit generation returns same results:


$ convert image.jpg -verbose -depth 24 test_clean24.bmp
image.jpg=>test_clean24.bmp JPEG 4032x3024 4032x3024+0+0 24-bit sRGB 36.58MB 0.750u 0 ...
by wsielski
2016-10-27T01:23:54-07:00
Forum: Users
Topic: Convert to 32-bit depth BMP
Replies: 7
Views: 26076

Convert to 32-bit depth BMP

Hi I'm trying to convert png file to BMP 32-bit depth.

Unfortunately all my tests ends with 8-bit BMP file. What am I doing wrong?


$ convert image.jpg -verbose test_clean.bmp
image.jpg=>test_clean.bmp JPEG 4032x3024 4032x3024+0+0 8-bit sRGB 36.58MB 0.640u 0:00.680
$ convert image.jpg -verbose ...
by wsielski
2016-09-22T06:30:19-07:00
Forum: Developers
Topic: multi resolution ICNS generation
Replies: 1
Views: 7571

multi resolution ICNS generation

Hello,

I'm trying to generate an *.icns file from multiple *.jpg files so it'd be a multi resolution .icns file. I've managed to do so with the .ico but not with the .icns. Here is what I've tried:


$ convert 48x48.jpg 100x100.jpg 150x150.jpg 200x200.jpg icon.ico # it works
$ convert 48x48.jpg ...
by wsielski
2016-09-22T06:13:12-07:00
Forum: PerlMagick
Topic: PerlMagick multiple thumbnail resize
Replies: 2
Views: 22176

Re: PerlMagick multiple thumbnail resize

There is a Clone() method available on Image::Magick object so if we do so we can Clone the object for all resolutions.
by wsielski
2016-09-22T03:40:46-07:00
Forum: PerlMagick
Topic: PerlMagick multiple thumbnail resize
Replies: 2
Views: 22176

PerlMagick multiple thumbnail resize

Hi,

I'm trying to make a multiple image resize of single file but the problem is when I make thumbnail 48x48 and then bigger eg 100x100 it looks like the thumb wasn't made from original image 1000x1000 but from the first resize. How can I make this using PerlMagick?


use Image::Magick;
my $x ...