Search found 25563 matches

by fmw42
2019-10-14T09:40:54-07:00
Forum: Fred's Scripts
Topic: scripts library load error (macOS)
Replies: 10
Views: 154793

Re: scripts library load error (macOS)

What is your exact Imagemagick 7 version? How did you install it?

What do you get from

Code: Select all

magick -version
Does your input Tiff have more than one page or layer. The script can only process one page or layer, so use ABC.tif[0]
by fmw42
2019-10-14T09:34:36-07:00
Forum: Users
Topic: Export layers to individual psd file keeping guides
Replies: 3
Views: 41542

Re: Export layers to individual psd file keeping guides

Perhaps you are running out of space in your tmp directory. Look to see if it is filled with images that did not get deleted, esp. those belonging to Imagemagick.
by fmw42
2019-10-13T22:12:06-07:00
Forum: Users
Topic: Potentially hundreds of images in an animated frame sequence
Replies: 1
Views: 35607

Re: Potentially hundreds of images in an animated frame sequence

Imagemagick 6 cannot currently handle that many channels. It only currently saves up to 5: C,M,Y,K,A in an external format. Imagemagick 7 can handle up to about 30, I believe, but only in internal format files.

You can write the images into a montage image grid.
by fmw42
2019-10-13T17:09:42-07:00
Forum: Announce
Topic: Enhanced -trim operator
Replies: 1
Views: 97820

Re: Enhanced -trim operator

Here is another interesting example -- see my Imagemagick solution for trimming and appending fisheye stereo pairs side-by-side at https://stackoverflow.com/questions/58349762/cropping-to-only-valid-pixels-after-remap-with-fisheye-equidistant-stereo-rect Note a new argument for the aggressive -trim ...
by fmw42
2019-10-13T17:01:06-07:00
Forum: Users
Topic: Create an animated "contact sheet" of gifs
Replies: 10
Views: 59004

Re: Create an animated "contact sheet" of gifs

I can create a montage of animations and it will animate using the latest beta (IM 6.9.10.69 or IM 7.0.8.69). If they have different numbers of frames, an empty spot will appear. So it should be easy for you to create your contact sheet of animations. Just make the tiling correspond to the number of...
by fmw42
2019-10-13T16:56:45-07:00
Forum: Developers
Topic: Please add -delay to montage
Replies: 2
Views: 41185

Re: Please add -delay to montage

It works in IM 7.0.8.69 beta. Thanks. See https://imagemagick.org/discourse-serve ... 86#p169596

Sorry, I forgot to check, but can you also add -layers optimize to montage? Thanks
by fmw42
2019-10-13T14:33:18-07:00
Forum: Users
Topic: Converting SVG to PNG on QNAP fails
Replies: 10
Views: 57507

Re: Converting SVG to PNG on QNAP fails

It should run automatically when you do

Code: Select all

convert image.svg image.png
But your delegates do not have xml installed.

Can you install Inkscape on the system, which does not work as a delegate. So IM does not need to be reinstalled.
by fmw42
2019-10-13T13:45:50-07:00
Forum: Users
Topic: Converting SVG to PNG on QNAP fails
Replies: 10
Views: 57507

Re: Converting SVG to PNG on QNAP fails

You have two other options. First, Imagemagick has a built in MSVG/XML renderer. You can see that if you do convert -list format look at the line for SVG. At the end, it should list MSVG or XML The other option is just to install Inkscape. Then Imagemagick will use it if it can be found. You do not ...
by fmw42
2019-10-13T13:42:15-07:00
Forum: Developers
Topic: Please add -delay to montage
Replies: 2
Views: 41185

Please add -delay to montage

Montage seems to work to create a montage of animations, but it does not seem to permit the use of -delay. Can that be added? This works and the result is an animated gif of the 4 animated gifs. montage anim.gif anim.gif anim.gif anim.gif -tile 2x2 anim4_montage.gif But this does not work: montage -...
by fmw42
2019-10-13T12:03:31-07:00
Forum: Users
Topic: Converting SVG to PNG on QNAP fails
Replies: 10
Views: 57507

Re: Converting SVG to PNG on QNAP fails

Your first line [/etc/config/ImageMagick-6] # convert -debug all /opt/fhem/www/images/Kindle_Status.svg -type GrayScale -depth 8 Seems to be missing an output. It also looks like you are trying to convert an SVG to PNG and not PNG to SVG. Please clarify. Perhaps post your exact command line. The lin...
by fmw42
2019-10-13T11:00:24-07:00
Forum: Users
Topic: Create an animated "contact sheet" of gifs
Replies: 10
Views: 59004

Re: Create an animated "contact sheet" of gifs

The latter. I want to make an animated contact sheet from many animated gifs. The problem with that is that you need to sync the animations. That generally only works well if you have the same number of frames and the same delays in all the animations. See https://imagemagick.org/Usage/anim_mods/#m...
by fmw42
2019-10-13T10:02:02-07:00
Forum: Users
Topic: Create an animated "contact sheet" of gifs
Replies: 10
Views: 59004

Re: Create an animated "contact sheet" of gifs

Are you asking to take one animated gif and extract all the frames and make a contact sheet of those? Or are you asking to make an animated contact sheet from many animated gifs?
by fmw42
2019-10-11T21:09:53-07:00
Forum: Users
Topic: Removing "checks" dithering
Replies: 3
Views: 40513

Re: Removing "checks" dithering

One potential way is notch filtering via FFT processing. See http://www.fmwconcepts.com/imagemagick/fourier_transforms/fourier.html#noise_removal Another way, might be to simply create a mask image that is black where the checkerboard does not exist and white where it does. Then use the mask to repl...
by fmw42
2019-10-11T16:04:09-07:00
Forum: Users
Topic: Detecting multiple images in one image file
Replies: 19
Views: 120094

Re: Detecting multiple images in one image file

The listing from connected components when you use verbose=true in the define will show all the bounding boxes. So you just need to parse the output to get them. Once you have them, you can use -crop with those bounding boxes to extract each image one at a time. You will have to script these parts.
by fmw42
2019-10-11T14:16:00-07:00
Forum: Bugs
Topic: EPS thumbnails are blurry
Replies: 1
Views: 35071

Re: EPS thumbnails are blurry

There is no -define jpeg:size. There is a -define jpeg: extent={size} where size is in kb. See https://imagemagick.org/Usage/formats/#jpg_write. Also add -density XX before reading the pdf to get better quality. convert -density 300 <path to EPS file> -thumbnail 319x319 -define jpeg:extent={size} cq...