Search found 25563 matches

by fmw42
2019-09-16T09:22:00-07:00
Forum: Users
Topic: transparency changes in IM 7
Replies: 11
Views: 24852

Re: transparency changes in IM 7

IM 7 is more sensitive the syntax order. Your syntax is wrong. Read the input before any processing This works for me. magick input.jpg \( shamrock.gif -resize 400x300 \) -gravity center -compose CopyOpacity -composite out.gif See https://imagemagick.org/Usage/basics/#cmdline https://imagemagick.org...
by fmw42
2019-09-16T09:20:21-07:00
Forum: Users
Topic: -radial-blur unrecognized
Replies: 2
Views: 9803

Re: -radial-blur unrecognized

OK. I will add it to my list for my next edit session.
by fmw42
2019-09-16T09:14:13-07:00
Forum: Users
Topic: Combine two psd files into one, keep filename
Replies: 7
Views: 12861

Re: Combine two psd files into one, keep filename

You need to rebuild the flattened layer from all the other layers after removing the flattened layer from each of the input images.

Code: Select all

magick \
  \( test-me-1.psd -delete 0 \) \
  \( test-me-5.psd -delete 0 \) \
  \( -clone 0--1 \) -insert 0
  test-me-1.psd
by fmw42
2019-09-16T09:13:06-07:00
Forum: Developers
Topic: Deploying to Azure Cloud
Replies: 2
Views: 71562

Re: Deploying to Azure Cloud

Is the OP asking about MagickWand or Python Wand?
by fmw42
2019-09-15T20:45:25-07:00
Forum: Bugs
Topic: annotate parameter needs "magick convert" not only "magick" for some order
Replies: 6
Views: 86195

Re: annotate parameter needs "magick convert" not only "magick" for some order

willemijns2 wrote: 2019-09-15T20:40:03-07:00 I simplified the syntax here ;)
I do not understand what you simplified! Did my command work? If not then post your exact command.
by fmw42
2019-09-15T16:30:35-07:00
Forum: Bugs
Topic: annotate parameter needs "magick convert" not only "magick" for some order
Replies: 6
Views: 86195

Re: annotate parameter needs "magick convert" not only "magick" for some order

Please fix your syntax and test again. The following should work fine. If it does not, then let us know. magick -size 2480x3508 xc:white -annotate +120+120 "Hello World" emptypage.png However, you have not specified a font or pointsize. Thus you may not see the text you wrote very well. Bu...
by fmw42
2019-09-15T14:09:14-07:00
Forum: Bugs
Topic: annotate parameter needs "magick convert" not only "magick" for some order
Replies: 6
Views: 86195

Re: annotate parameter needs "magick convert" not only "magick" for some order

-size 2480x3508 needs an image to work on. Annotate does not create one. It just adds to an existing one. Move you xc:white right after -size 2480x3508. IM 7 is more picky about syntax order than IM 6. Use Magick only, not magick convert, even if it works. That may invoke IM 6 behavior if you add co...
by fmw42
2019-09-15T12:28:35-07:00
Forum: Bugs
Topic: combining 2 images NOK windows last version but OK linux
Replies: 9
Views: 95789

Re: combining 2 images NOK windows last version but OK linux

-compose over is the default. But I always add it, especially when I have done other compose methods prior in the command line to reset it.
by fmw42
2019-09-15T12:04:23-07:00
Forum: Bugs
Topic: combining 2 images NOK windows last version but OK linux
Replies: 9
Views: 95789

Re: combining 2 images NOK windows last version but OK linux

Sorry, see my changed solution -- add -colorspace sRGB after reading emptypage.png
by fmw42
2019-09-15T11:52:09-07:00
Forum: Bugs
Topic: combining 2 images NOK windows last version but OK linux
Replies: 9
Views: 95789

Re: combining 2 images NOK windows last version but OK linux

Add -colorspace sRGB right after reading in emptypage.png in your second command. The white image is being treated as single channel grayscale, but should be 3 channel truecolor, since named colors even if black or white are supposed to be treated as color not grayscale. I confirm your issue on IM 7...
by fmw42
2019-09-15T11:22:41-07:00
Forum: Users
Topic: Converting HEIC images with Display P3 color profile
Replies: 14
Views: 27852

Re: Converting HEIC images with Display P3 color profile

The page at https://imagemagick.org/script/formats.php, says HEIC R Apple High efficiency Image Format HEIC requires the libheif delegate library. So ImageMagick can only read HEIC as far as I know. Check on your system using convert -list format and look at the line for HEIC assuming you have insta...
by fmw42
2019-09-15T11:18:38-07:00
Forum: Bugs
Topic: combining 2 images NOK windows last version but OK linux
Replies: 9
Views: 95789

Re: combining 2 images NOK windows last version but OK linux

I am not sure I understand your question. Are you saying you get an error from

Code: Select all

convert -size 2480x3508 xc:white emptypage.png
What do you get from

Code: Select all

convert -version
What is your version of libpng?

You can see that from

Code: Select all

convert -list format
and look at the end of the line for PNG
by fmw42
2019-09-14T23:03:42-07:00
Forum: Users
Topic: Converting HEIC images with Display P3 color profile
Replies: 14
Views: 27852

Re: Converting HEIC images with Display P3 color profile

What is your ImageMagick version and platform? What was your exact command line? Can you provide your input image?
by fmw42
2019-09-14T19:06:07-07:00
Forum: Users
Topic: scaling down to 120x90px Gray with less ringing
Replies: 3
Views: 8192

Re: scaling down to 120x90px Gray with less ringing

-filter Triangle -resize is just doing bilinear, so it is more "smooth" than lanczos.
by fmw42
2019-09-14T17:48:33-07:00
Forum: Users
Topic: scaling down to 120x90px Gray with less ringing
Replies: 3
Views: 8192

Re: scaling down to 120x90px Gray with less ringing

See the discussion by Nicolas Robidoux who came up with the method you have found. See https://imagemagick.org/Usage/filter/nicolas/. He has other filter besides plain lanczos that you might try. The short answer is perhaps trade blurring for ringing by adjusting the resample blur amount with -defin...