Search found 12163 matches

by snibgo
2019-10-10T09:07:53-07:00
Forum: Magick.NET
Topic: Histogram with c# Magick.Net
Replies: 4
Views: 50712

Re: Histogram with c# Magick.Net

... and show a flexible histogram to modify that, ... I don't know what that means. I've never seen an editor that allows interactive editing of a histogram. The usual arrangement (eg Gimp Color Curves) shows a histogram. The user can interactively edit curves, and Gimp will update the histogram ac...
by snibgo
2019-10-10T08:27:48-07:00
Forum: Bugs
Topic: issue with the installer
Replies: 1
Views: 35408

Re: issue with the installer

...installed on a machine and copied to a folder... The installation creates registry entries about folders, so moving to a different folder will break it. For that, you need a "portable" version. See http://www.imagemagick.org/script/download.php#windows . However, pre-built portable ver...
by snibgo
2019-10-09T16:32:54-07:00
Forum: Users
Topic: joining images of different dimensions with automatic resizing according to smallest
Replies: 3
Views: 49243

Re: joining images of different dimensions with automatic resizing according to smallest

I am stacking them vertically using append operator. But there is white space at the bottom of B in result. At the right of B, surly? Sample inputs and output would clarify what you want. I don't think you can do this in a single command in v6. V7 can do the A and B problem in a single command, by ...
by snibgo
2019-10-09T15:10:34-07:00
Forum: Users
Topic: Batch TIF to PDF
Replies: 3
Views: 41663

Re: Batch TIF to PDF

I suggest you use "magick mogrify". See http://www.imagemagick.org/script/mogrify.php
by snibgo
2019-10-09T11:24:11-07:00
Forum: Users
Topic: FOSS to create 3D models in OBJ or FBX
Replies: 1
Views: 35532

Re: FOSS to create 3D models in OBJ or FBX

IM is a 2D raster image processor. For 3D, use a 3D system such as Blender.
by snibgo
2019-10-09T10:42:22-07:00
Forum: Users
Topic: ImageMagick7 runs much slower than version6
Replies: 27
Views: 114149

Re: ImageMagick7 runs much slower than version6

IM6 is limit thread 1 by default? No. "convert -list resource" shows the limit: Resource limits: Width: 214.7MP Height: 214.7MP List length: 18.446744EP Area: 6.4068GP Memory: 2.9834GiB Map: 5.9668GiB Disk: unlimited File: 1536 Thread: 8 <<======== Throttle: 0 Time: unlimited On my comput...
by snibgo
2019-10-09T06:14:10-07:00
Forum: Users
Topic: ImageMagick7 runs much slower than version6
Replies: 27
Views: 114149

Re: ImageMagick7 runs much slower than version6

Multi-threading can be disabled per command, but HDRI is a build-level switch.

I use at least two versions of IM: HDRI when I need precision, and non-HDRI when I need speed. This may not be feasible on a shared server.
by snibgo
2019-10-09T06:04:59-07:00
Forum: Users
Topic: Remove object from Image
Replies: 6
Views: 47477

Re: Remove object from Image

For a Windows BAT script that searches quickly, see Searching an image . For a process module that searches even more quickly, see Process modules: multi-scale image search . This is available for all platforms, but needs IM to be re-built. For the OP problem, perhaps the logo is always the smallest...
by snibgo
2019-10-09T05:45:21-07:00
Forum: Users
Topic: PDF to JPG clipping path
Replies: 6
Views: 46720

Re: PDF to JPG clipping path

spittman wrote:Is there a way to combine those two into one JPG file with a clipping path using ImageMagick?
No, IM can't write clipping paths. Gimp can.
by snibgo
2019-10-09T04:21:58-07:00
Forum: Users
Topic: Trimming background and isolated pixels
Replies: 3
Views: 40005

Re: Trimming background and isolated pixels

Did you try the command I showed? It works for me. Resized down for the web:
Image
by snibgo
2019-10-09T03:55:54-07:00
Forum: Users
Topic: [Solved] Specifying a maximum width for long caption text while for shorter strings occupying a shorter width?
Replies: 10
Views: 133091

Re: Specifying a maximum width for long caption text while for shorter strings occupying a shorter width?

You can insert "+write info:" at any point in the command. Another hint: insert "+write abc.png" anywhere. Very handy for debugging. The format can contain other characters, so we can do things like this: magick rose: -format FIRST=%@\n +write info: -border 10 -format SECOND=%@\n...
by snibgo
2019-10-09T03:27:17-07:00
Forum: Users
Topic: Color issue when compositing sRGB image over CMYK background and saving as CMYK
Replies: 5
Views: 45618

Re: Color issue when compositing sRGB image over CMYK background and saving as CMYK

CMYK and sRGB have different gamuts, meaning some colours in one colourspace have no unique corresponding colour in the other colorspace. This means that some colours (especially saturated colours) will change when they undergo the roundtrip CMYK->sRGB->CMYK. The sample-bg.jpg image undergoes that r...
by snibgo
2019-10-08T08:46:21-07:00
Forum: Users
Topic: Trimming background and isolated pixels
Replies: 3
Views: 40005

Re: Trimming background and isolated pixels

There are many way to denoise an image. When the noise is small dark marks on a light background, we can blur then threshold. This finds the trimmed parameters from a denoised image, and uses those parameters on the input image. magick \ VII-3-Prussing-1982-072.tif \ \( +clone -blur 0x2 -threshold 5...
by snibgo
2019-10-08T08:27:21-07:00
Forum: Users
Topic: IM 7 -background transparent
Replies: 4
Views: 8310

Re: IM 7 -background transparent

I suppose in those other cases alpha is already enabled. If the input image has any transparency, alpha will certainly be enabled.
by snibgo
2019-10-08T07:42:49-07:00
Forum: Users
Topic: IM 7 -background transparent
Replies: 4
Views: 8310

Re: IM 7 -background transparent

You need to enable alpha:

Code: Select all

magick flower.jpg -alpha set -background transparent -shear 12x0 out.png