Search found 12163 matches

by snibgo
2019-10-13T09:00:17-07:00
Forum: Users
Topic: Create an animated "contact sheet" of gifs
Replies: 10
Views: 58975

Re: Create an animated "contact sheet" of gifs

I think you would need to write a script for that.
by snibgo
2019-10-13T07:35:47-07:00
Forum: Users
Topic: animate in Window x11
Replies: 1
Views: 34992

Re: animate in Window x11

Microsoft Windows doesn't include X-windows. Perhaps X-windows can be installed on top of Microsoft Windows.
by snibgo
2019-10-13T05:36:50-07:00
Forum: Users
Topic: Create an animated "contact sheet" of gifs
Replies: 10
Views: 58975

Re: Create an animated "contact sheet" of gifs

I'm not sure what you want. Perhaps you have a number of animated GIFs, and you want to create a single GIF that is made from the input GIFs placed side-by-side or below each other, or in a grid. This is easily done by keeping the GIFs separate, and showing them on an HTML page. Combining them into ...
by snibgo
2019-10-12T08:34:44-07:00
Forum: Users
Topic: Getting a perimeter and filling in the rest
Replies: 3
Views: 40091

Re: Getting a perimeter and filling in the rest

Your required output has a wide black margin on the right. I don't know where that has come from. Ignoring that, we can floodfill to isolate the outer black border. That gives a rough edge we can smooth with a blur. The blur has to be large enough to help, but not so large that it damages the curved...
by snibgo
2019-10-12T06:46:24-07:00
Forum: Users
Topic: Getting a perimeter and filling in the rest
Replies: 3
Views: 40091

Re: Getting a perimeter and filling in the rest

What version of IM, on what platform?

What mask do you want? The central rectangle, or that plus the enclosing black area, or that plus the enclosing white area, or what?
by snibgo
2019-10-12T05:33:37-07:00
Forum: Users
Topic: Removing "checks" dithering
Replies: 3
Views: 40491

Re: Removing "checks" dithering

How about (Windows syntax):

Code: Select all

magick ^
  001.tif ^
  ( -clone 0 -morphology HMT 3x1:0,1,0 -negate ) ^
  ( -clone 0 -morphology HMT 1x3:0,1,0 -negate ) ^
  -background None ^
  -compose Darken -layers flatten ^
  out.png

by snibgo
2019-10-11T13:50:26-07:00
Forum: Users
Topic: Convert DNG with Color Correction
Replies: 7
Views: 53292

Re: Convert DNG with Color Correction

Tamehome wrote:Hi, it does appear that the -a parameter causes ImageMagick to perform its own form of white balancing...
That's not correct. "-a" is a parameter to dcraw, which does the white balancing.
by snibgo
2019-10-11T08:59:17-07:00
Forum: Users
Topic: Resizing all my jpg Images in Wordpress Uploads Folder
Replies: 10
Views: 55699

Re: Resizing all my jpg Images in Wordpress Uploads Folder

Not within IM. In a shell script, for each file, you could find the current compression "quality" level. If it is more than 70, then run the command to compress it.
by snibgo
2019-10-11T07:31:59-07:00
Forum: Users
Topic: Resizing all my jpg Images in Wordpress Uploads Folder
Replies: 10
Views: 55699

Re: Resizing all my jpg Images in Wordpress Uploads Folder

...like if a File is already compressed to the maximum by a 3rd party plugin... Maximum compression is a really bad idea. The result will look awful. JPEG compression is a trade-off between image quality and file size. Smaller files have worse image quality. What will Imagemagick do with the Imagef...
by snibgo
2019-10-11T07:09:56-07:00
Forum: Users
Topic: Resizing all my jpg Images in Wordpress Uploads Folder
Replies: 10
Views: 55699

Re: Resizing all my jpg Images in Wordpress Uploads Folder

I have installed ImageMagick 6.7.8-9. That is very old. I suggest you install a current version. What command should be used, convert or mogrify? If the command is simple, mogrify would work. Otherwise, use convert to process one file at a time, and put that in a shell loop. I would like to remove ...
by snibgo
2019-10-10T15:32:15-07:00
Forum: Users
Topic: Keep color correction when converting
Replies: 20
Views: 94066

Re: Keep color correction when converting

IM can (via a delegate such as dcraw) read the raw image from the DNG. Exiftool can extract the JPEG from the DNG file.

I don't have Adobe tools. I expect they can read the raw image from the DNG file, and apply transformations, and save the result to a format such as 16 bit/channel/pixel TIFF.
by snibgo
2019-10-10T15:07:12-07:00
Forum: Users
Topic: Keep color correction when converting
Replies: 20
Views: 94066

Re: Keep color correction when converting

You mean to say the jpeg preview file has been edited and attached rather than creating from the dng file? I don't know what made the JPEG preview. But it is clearly different to the raw image, more "corrected". Could you please tell me which exiftool metadata you are referring too? exift...