Search found 11064 matches

by magick
2019-06-09T04:11:22-07:00
Forum: Bugs
Topic: [PATCH] display command does'nt change colorspace to sRGB if needed
Replies: 4
Views: 8407

Re: [PATCH] display command does'nt change colorspace to sRGB if needed

This is expected behavior. Instead try this command:

Code: Select all

display -colorspace sRGB image.heic
by magick
2019-06-03T17:07:53-07:00
Forum: Developers
Topic: support for raw 16-bit RGB565
Replies: 21
Views: 115582

Re: support for raw 16-bit RGB565

We'll add a 565 coder within a day or two:

Code: Select all

magick -size 800x600 "RGB565:Loading Default.2rawdata" crest.png
by magick
2019-06-02T18:06:16-07:00
Forum: Developers
Topic: support for raw 16-bit RGB565
Replies: 21
Views: 115582

Re: support for raw 16-bit RGB565

Assume 8-bits per pixel, so -depth 8 is required. Even so, with a width of 800 pixels (e.g. -size 800x600), thats 2400 bytes of RGB per scanline. With a file length of 960000, the pixels are consumed after 400 rows, although you are asking for 600-- thus an exception is thrown. How many rows and col...
by magick
2019-06-01T11:29:22-07:00
Forum: Users
Topic: convert output changes with recent update
Replies: 4
Views: 7160

Re: convert output changes with recent update

-48 will be released today. Nudge Arch to upgrade or build -48 from source.
by magick
2019-06-01T10:57:35-07:00
Forum: PerlMagick
Topic: Work with object...
Replies: 6
Views: 54099

Re: Work with object...

With PerlMagick you can read an image, resize it, and get the pixels all in memory. See https://imagemagick.org/script/perl-magick.php for example PerlMagick scripts.
by magick
2019-06-01T05:24:52-07:00
Forum: Users
Topic: convert output changes with recent update
Replies: 4
Views: 7160

Re: convert output changes with recent update

Thanks for the problem report. We can reproduce it and will have a patch to fix it in GIT master branch @ https://github.com/ImageMagick/ImageMagick later today. The patch will be available in the beta releases of ImageMagick @ https://www.imagemagick.org/download/beta/ by sometime tomorrow.
by magick
2019-06-01T05:24:41-07:00
Forum: Bugs
Topic: Problem with -blur on transparent with 7.0.8-47
Replies: 8
Views: 13594

Re: Problem with -blur on transparent with 7.0.8-47

Thanks for the problem report. We can reproduce it and will have a patch to fix it in GIT master branch @ https://github.com/ImageMagick/ImageMagick later today. The patch will be available in the beta releases of ImageMagick @ https://www.imagemagick.org/download/beta/ by sometime tomorrow.
by magick
2019-05-31T11:36:07-07:00
Forum: Bugs
Topic: Problem with -blur on transparent with 7.0.8-47
Replies: 8
Views: 13594

Re: Problem with -blur on transparent with 7.0.8-47

Convolution in IMv7 had a bug when dealing with alpha channels. The bug is fixed in -47. Using -channel RGB tells IM to ignore the alpha channel when blurring. It should, as Fred suggests, fix the problem you reported.
by magick
2019-05-28T10:39:17-07:00
Forum: Users
Topic: Resize to large destination slows down at 33%
Replies: 7
Views: 6131

Re: Resize to large destination slows down at 33%

Use -scale rather than -resize. Resizing is a two pass process that causes ImageMagick to read pixels in a non-optimal manner, column-wise rather than row-wise. That's fine for memory, but as you found, very slow on disk.
by magick
2019-05-27T09:53:01-07:00
Forum: Bugs
Topic: convert: data storage type is not supported when opening a gimp 2.10 xcf image
Replies: 1
Views: 6318

Re: convert: data storage type is not supported when opening a gimp 2.10 xcf image

Not a bug. ImageMagick is behaving properly. It does not support high bit-depth images exported by Gimp 2.10 and alerts you when you try to read the image. Two solutions. One, save your image in the Gimp 2.8 compatible format or wait for a patch to the XCF reader in ImageMagick. We do not have an ET...
by magick
2019-05-25T13:23:18-07:00
Forum: Bugs
Topic: possible bug IM 7.0.8.46 -alpha deactivate/activate
Replies: 4
Views: 9018

Re: possible bug IM 7.0.8.46 -alpha deactivate/activate

Try now. We built a new Beta release.
by magick
2019-05-25T13:20:53-07:00
Forum: Developers
Topic: support for raw 16-bit RGB565
Replies: 21
Views: 115582

Re: support for raw 16-bit RGB565

Post a link to your Loading Default.2rawdata image file. We need to reproduce the problem before we can comment.
by magick
2019-05-23T18:22:38-07:00
Forum: Bugs
Topic: possible bug IM 7.0.8.46 -alpha deactivate/activate
Replies: 4
Views: 9018

Re: possible bug IM 7.0.8.46 -alpha deactivate/activate

Grab the latest beta (building now). This command works for both IMv6 and IMv7: convert text.png -alpha deactivate -blur 0x6 -shade 135x5 -normalize +level 30% -alpha activate shaded7.png There is a slight difference in shading. You can change the intensity to Rec609 and the results should match.
by magick
2019-05-21T18:16:29-07:00
Forum: Bugs
Topic: Conversion of SVG image to PNG with text that includes an & adds extra space around ampersand
Replies: 12
Views: 16899

Re: Conversion of SVG image to PNG with text that includes an & adds extra space around ampersand

@hairykid shows the filename as msvg:... which suggests the renderer is MSVG, the internal ImageMagick SVG renderer.
by magick
2019-05-21T15:32:47-07:00
Forum: Bugs
Topic: Conversion of SVG image to PNG with text that includes an & adds extra space around ampersand
Replies: 12
Views: 16899

Re: Conversion of SVG image to PNG with text that includes an & adds extra space around ampersand

We're not getting extra space in the ampersand with ImageMagick 7.0.8-46, the current release. Can you try with -46 and see if the problem persists for you?