Search found 12163 matches

by snibgo
2013-07-16T20:14:47-07:00
Forum: Bugs
Topic: writing multi-image tiff
Replies: 12
Views: 5021

Re: writing multi-image tiff

Ah, yes, I hadn't taken my tests quite far enough. When the images are all colour (more specifically, the same type), Gimp can open them all as layers. That's a great tip to know. I could never figure out why I couldn't make a tiff out of both a photo and a greyscale mask and open them together as l...
by snibgo
2013-07-16T14:53:50-07:00
Forum: Bugs
Topic: writing multi-image tiff
Replies: 12
Views: 5021

Re: writing multi-image tiff

When the images are in colour, with +compress, I see almost no difference in file size. Version 6.8.6-5 and 6.8.3-0: "%IMG6865%convert -size 500x500 -depth 8 xc:pink xc:red gradient:white-blue xc:green +compress out.tiff "%IMG683%convert" -size 500x500 -depth 8 xc:pink xc:red gradient...
by snibgo
2013-07-16T13:35:46-07:00
Forum: Bugs
Topic: writing multi-image tiff
Replies: 12
Views: 5021

Re: writing multi-image tiff

It fails for me: IM v6.8.6-5, Gimp 2.8.2, on Windows 7.

In Gimp, I can open all the images as separate images. But when I ask to open them as slayers, I get only 2 layers.

When I create my tiff with an extra layer, Gimp can still open only 2.

It worked fine in 6.8.4-0.
by snibgo
2013-07-16T10:46:49-07:00
Forum: Developers
Topic: Convert using ImageMagick using PHP
Replies: 52
Views: 103613

Re: Convert using ImageMagick using PHP

Sorry, it's been too many years (decades?) since I used IIS.

Maybe it's worth trying a simple gs command from PHP, something like:

Code: Select all

"c:\program files\gs\gs9.07\bin\gswin64c" --help
by snibgo
2013-07-16T10:09:32-07:00
Forum: Developers
Topic: Convert using ImageMagick using PHP
Replies: 52
Views: 103613

Re: Convert using ImageMagick using PHP

Does the command that converts from a PDF work from the prompt? If not, then that needs correcting. Otherwise, it's a server configuration problem.
by snibgo
2013-07-16T09:35:42-07:00
Forum: Bugs
Topic: Convert (version 6.8.6-5) losing ICC
Replies: 6
Views: 7106

Re: Convert (version 6.8.6-5) losing ICC

v6.8.6-5 on Windows 7 doesn't seem to embed profiles in jpegs. >set I=%IMG6865% >%I%convert -version Version: ImageMagick 6.8.6-4 2013-07-08 Q16 http://www.imagemagick.org Copyright: Copyright (C) 1999-2013 ImageMagick Studio LLC Features: DPC OpenMP Delegates: bzlib djvu fftw fontconfig freetype jn...
by snibgo
2013-07-16T08:46:47-07:00
Forum: Users
Topic: Conditional Resizing
Replies: 13
Views: 6756

Re: Conditional Resizing

This isn't about Conditional Resizing, so start a new thread. And supply an example image.
by snibgo
2013-07-16T00:03:47-07:00
Forum: Users
Topic: -colorize loses transparency. Bug?
Replies: 14
Views: 3535

Re: -colorize loses transparency. Bug?

This image is made for the web and the output image is lighter than it should be (I use Google Chrome - if this makes any difference?)... I don't have your old version of IM, or any version of PS, but it might be a gamma problem, aka RGB/sRGB. If so, then sprinkling "-set colorspace sRGB"...
by snibgo
2013-07-15T22:51:39-07:00
Forum: Bugs
Topic: Possible bug with -unsharpen introduced with 6.8.4-0
Replies: 11
Views: 8960

Re: Possible bug with -unsharpen introduced with 6.8.4-0

Unsharpen is supposed to ignore 'special convolve specific' user settings such as -channel, -bias and convolve defines. Perhaps it's supposed to ignore -channel, but it doesn't, as I showed above. A more specific example: convert -size 100x50 xc:gray(25%) xc:gray(75%) -append -channel R -unsharp 0x...
by snibgo
2013-07-15T19:14:05-07:00
Forum: Users
Topic: PSD Conversion
Replies: 57
Views: 46323

Re: PSD Conversion

The script looks to do what we need but im unsure if i can call it through IM ? and if so would you know how i could call the script using IM ? Scripts call IM programs such as convert. IM programs don't call scripts. If I understand you, you take a PSD image (which might have CMYK or RGB channels)...
by snibgo
2013-07-15T14:39:22-07:00
Forum: Developers
Topic: Convert using ImageMagick using PHP
Replies: 52
Views: 103613

Re: Convert using ImageMagick using PHP

I know nothing about PHP, so can't help there. However, the message "Must specify a file system" comes from Microsoft convert, a utility that converts one filesystem into another. So your script successfully calls a program, but the wrong one. As suggested, putting the full path to ImageMa...
by snibgo
2013-07-15T11:08:27-07:00
Forum: Users
Topic: -colorize loses transparency. Bug?
Replies: 14
Views: 3535

Re: -colorize loses transparency. Bug?

Apart from size, what's the difference between output3.png and output.png?
by snibgo
2013-07-15T09:27:01-07:00
Forum: Users
Topic: -colorize loses transparency. Bug?
Replies: 14
Views: 3535

Re: -colorize loses transparency. Bug?

Try:

Code: Select all

convert icon.png -fill #93117e -alpha off -opaque Black -alpha on output.png
by snibgo
2013-07-15T09:12:00-07:00
Forum: Users
Topic: -colorize loses transparency. Bug?
Replies: 14
Views: 3535

Re: -colorize loses transparency. Bug?

I don't have 6.7.7-10, but may be able to find a solution that does what you want on that version. But I don't know what you want. icon.png has aliased black letters on a transparent background. The background is transparent black near the letters; otherwise transparent white. What result do you wan...
by snibgo
2013-07-15T08:58:43-07:00
Forum: Bugs
Topic: Possible bug with -unsharpen introduced with 6.8.4-0
Replies: 11
Views: 8960

Re: Possible bug with -unsharpen introduced with 6.8.4-0

I don't know why "-unsharp" seems to blur the alpha channel. But you can prevent this from happening:

Code: Select all

convert example.png -channel RGB -unsharp 12x6+0.5+0 +channel -background black -flatten out.png