Search found 11064 matches

by magick
2019-10-16T17:07:09-07:00
Forum: Bugs
Topic: Issue with "-compose lighten" with IM 7.0.8-68
Replies: 3
Views: 49412

Re: Issue with "-compose lighten" with IM 7.0.8-68

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-10-15T03:11:02-07:00
Forum: Fred's Scripts
Topic: Multicrop fails to output files
Replies: 5
Views: 80779

Re: Multicrop fails to output files

See https://imagemagick.org/script/architecture.php. Its likely you ran out of heap memory so the image pixels are pushed to disk. You can verify by adding -debug cache to your command-line. The debugging output tells you where the cache resides (e.g. memory, disk, etc.). On our 32GB system, we crop...
by magick
2019-10-13T14:15:54-07:00
Forum: Developers
Topic: Please add -delay to montage
Replies: 2
Views: 39302

Re: Please add -delay to montage

Done.
by magick
2019-10-12T11:20:59-07:00
Forum: Magick++
Topic: Linker errors: libMagickWand-7.Q16HDRI.so.6: undefined reference(s)
Replies: 2
Views: 85543

Re: Linker errors: libMagickWand-7.Q16HDRI.so.6: undefined reference(s)

It appears a dependency is missing, libgomp. Mod the Cmake configuration files to find libgomp and add it to the linker statement or disable OpenMP or build ImageMagick with autoconf/automake (e.g. run the `configure` script then `make`).
by magick
2019-10-09T13:02:28-07:00
Forum: Bugs
Topic: Webp conversion broken with ImageMagick 6.9.10-68 Q16 x86_64 2019-10-07 and PHP Plugin
Replies: 9
Views: 72858

Re: Webp conversion broken with ImageMagick 6.9.10-68 Q16 x86_64 2019-10-07 and PHP Plugin

Ok, we can reproduce the problem now. We should be able to fix the problem and export a new release by late this weekend.
by magick
2019-10-09T07:34:50-07:00
Forum: Bugs
Topic: Webp conversion broken with ImageMagick 6.9.10-68 Q16 x86_64 2019-10-07 and PHP Plugin
Replies: 9
Views: 72858

Re: Webp conversion broken with ImageMagick 6.9.10-68 Q16 x86_64 2019-10-07 and PHP Plugin

The min version of libwebpmux is 0.4.4. Any chance you can upgrade your library and let us know if that fixes the problem?
by magick
2019-10-09T03:13:08-07:00
Forum: Bugs
Topic: Webp conversion broken with ImageMagick 6.9.10-68 Q16 x86_64 2019-10-07 and PHP Plugin
Replies: 9
Views: 72858

Re: Webp conversion broken with ImageMagick 6.9.10-68 Q16 x86_64 2019-10-07 and PHP Plugin

Try this command on the command-line: convert logo: -thumbnail 100x100 logo.webp Can you read/view logo.webp? Hope so, that command works fine for us and produces a valid image in the WebP image format. If it fails, post a link to the image so we can inspect it and also post the results of this comm...
by magick
2019-10-08T17:45:02-07:00
Forum: Fred's Scripts
Topic: 'Unable to Parse' error using Freds Pagecurl script
Replies: 6
Views: 82921

Re: 'Unable to Parse' error using Freds Pagecurl script

This statement does not grok: convert xc: -format "%[fx:($p3x)cos(pi*$angle/180)-($p3y+$len)sin(pi*$angle/180)+$x1]" info: instead it likely should be convert xc: -format "%[fx:($p3x)*cos(pi*$angle/180)-($p3y+$len)*sin(pi*$angle/180)+$x1]" info: Its possible older versions of the...
by magick
2019-10-07T03:02:35-07:00
Forum: Magick++
Topic: [SOLVED] Error when using Magick++: unknown type name 'ssize_t'
Replies: 8
Views: 55359

Re: Error when using Magick++: unknown type name 'ssize_t'

The Windows configure script auto-generates magick-baseconfig.h. It includes a define for ssize_t as follows:

Code: Select all

#if !defined(ssize_t) && !defined(__MINGW32__)
#if defined(_WIN64)
typedef __int64 ssize_t;
#else
typedef long ssize_t;
#endif
#endif
by magick
2019-10-05T17:57:08-07:00
Forum: Bugs
Topic: implode region in IM 7
Replies: 5
Views: 47371

Re: implode region in IM 7

Sure, you can clone the image, operate on it and composite the results back to the source image. This is exactly what IMv6 does, -region was simply a convenience to do all the operations with one -region option.
by magick
2019-10-05T15:39:27-07:00
Forum: Bugs
Topic: implode region in IM 7
Replies: 5
Views: 47371

Re: implode region in IM 7

See https://imagemagick.org/script/porting.php: -region: This option sets a write mask for the region you define. In IMv6, a separate image was cloned instead, operated on, and the results were composited to the source image. In addition, the draw transformations are relative to the upper left corne...
by magick
2019-10-05T11:43:05-07:00
Forum: Bugs
Topic: -draw DstIn
Replies: 2
Views: 41162

Re: -draw DstIn

Let us know your work-around. IMv7 behavior differs from IMv6 per https://imagemagick.org/script/porting.php but in some cases, it could be a bug.
by magick
2019-10-05T10:19:36-07:00
Forum: Users
Topic: Text stroke cut off
Replies: 4
Views: 15179

Re: Text stroke cut off

Thanks for the analysis. We reverted the text offset patch but kept the DstOut composition patch. You will bet proper text edges now.
by magick
2019-10-02T16:59:43-07:00
Forum: Users
Topic: Text stroke cut off
Replies: 4
Views: 15179

Re: Text stroke cut off

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.