Search found 25563 matches

by fmw42
2010-03-15T16:06:11-07:00
Forum: IMagick
Topic: setColorSpace RGB results in negative image
Replies: 13
Views: 29096

Re: setColorSpace RGB results in negative image

Only other thing is to try sending PM directly to the developer (mkoppanen?)
by fmw42
2010-03-15T15:51:01-07:00
Forum: Developers
Topic: Hiring you as an Expert
Replies: 5
Views: 10533

Re: Hiring you as an Expert

Looking to hire a graphic expert - with specific high expertise with ImageMagick to help & work with our programmer. We have & are developing a shirt design site - http://www.worldwide-usa.com/designstudio/. Below are 3 of many issues to solve; 1) antialiasing issues - when we load a ping i...
by fmw42
2010-03-15T15:42:27-07:00
Forum: Users
Topic: Index problem with identify in DOS FOR loop
Replies: 17
Views: 33592

Re: Index problem with identify in DOS FOR loop

you could try

SET width='identify -format "%%w" %%a'

similar for height

perhaps your version of IM is older than fx. what version are you using?
by fmw42
2010-03-15T15:40:32-07:00
Forum: IMagick
Topic: setColorSpace RGB results in negative image
Replies: 13
Views: 29096

Re: setColorSpace RGB results in negative image

I really don't know the Imagick API well, but it looks reasonable. Sorry I am out of suggestions.

check out http://us2.php.net/manual/en/function.i ... rspace.php

Looks like it wants an integer for the colorspace

$im->setImageColorSpace(1);
by fmw42
2010-03-15T11:41:00-07:00
Forum: IMagick
Topic: setColorSpace RGB results in negative image
Replies: 13
Views: 29096

Re: setColorSpace RGB results in negative image

did you do

$im = new imagick();
$im->setImageColorSpace(imagick::COLORSPACE_RGB);
...
by fmw42
2010-03-15T11:31:45-07:00
Forum: Developers
Topic: enhancement request to -average
Replies: 3
Views: 6944

Re: enhancement request to -average

One other thought about this to consider. Rather than using a -convolve type argument list (that is currently restricted to odd number of values), one could use a -set option:...:args list of values convert image1 image2 ... imageN -set option:...:args "wt1, wt2,... wtN" -weighted-sum resu...
by fmw42
2010-03-15T10:12:07-07:00
Forum: Users
Topic: Quickest way to create a PNG from a PDF
Replies: 1
Views: 3576

Re: Quickest way to create a PNG from a PDF

IM is may not be the best way to do that. see http://www.imagemagick.org/Usage/formats/#vector
by fmw42
2010-03-15T10:10:30-07:00
Forum: Users
Topic: Convert and delete
Replies: 1
Views: 4602

Re: Convert and delete

no solution with IM that I know. but you can use unix rm to remove those files when you want
by fmw42
2010-03-15T10:08:27-07:00
Forum: IMagick
Topic: Apply Bronze effect on Image
Replies: 1
Views: 6827

Re: Apply Bronze effect on Image

what is the bronze effect?

is that just a bronze tint?

see http://www.imagemagick.org/Usage/color/#tinting

or my script, tintilize, at the link below
by fmw42
2010-03-15T10:06:16-07:00
Forum: Users
Topic: Problem with Binary on Mac OS 10.6
Replies: 1
Views: 4869

Re: Problem with Binary on Mac OS 10.6

did you expert DYLD_LIBRARY_PATH Here is what I changed in my .profile file when I was using IM binaries with OSX Tiger. ## # DELUXE-USR-LOCAL-BIN-INSERT # (do not remove this comment) ## echo $PATH | grep -q -s "/usr/local/bin" if [ $? -eq 1 ] ; then PATH=$PATH:/usr/local/bin export PATH ...
by fmw42
2010-03-15T10:01:05-07:00
Forum: Users
Topic: convert to gif gives black background instead of white
Replies: 1
Views: 5612

Re: convert to gif gives black background instead of white

perhaps your eps has transparency.

Try

convert image.eps -background white -flatten image.gif
by fmw42
2010-03-15T09:55:37-07:00
Forum: Users
Topic: multiple psd[2] to png conversion
Replies: 1
Views: 3914

Re: multiple psd[2] to png conversion

#!/bin/sh for i in *.psd\[2\]; do convert "${i}" "${i%%.*}.png"; done try leaving off the \ escapes for i in *.psd[2]; do convert "${i}" "${i%%.*}.png"; done I am not sure what you are trying to do with %%? If this does not work, try leaving off the %% or jus...
by fmw42
2010-03-15T09:49:38-07:00
Forum: IMagick
Topic: setColorSpace RGB results in negative image
Replies: 13
Views: 29096

Re: setColorSpace RGB results in negative image

I don't use any API's but in command line, when reading a cmyk pdf, you need to set the colorspace to RGB before reading the pdf.
by fmw42
2010-03-15T09:24:21-07:00
Forum: MagickStudio
Topic: DIFFICULTY USING "EFFECTS/MOTION BLUR"
Replies: 19
Views: 70725

Re: DIFFICULTY USING "EFFECTS/MOTION BLUR"

In IM, the words "none" and "transparent" mean the same thing when creating a transparent image (or color). I had assumed you did not know how to create one (as it was not obvious to me) as you kept talking about importing a transparent image. Sorry for the misunderstanding. If y...
by fmw42
2010-03-14T15:45:28-07:00
Forum: Users
Topic: can't get white background for display or convert
Replies: 11
Views: 28486

Re: can't get white background for display or convert

Agreed. I note the -flatten option you mention produces a white background. Moreover, I've just found that I can force my graphics software to underlay a white background on each image. Thanks for the help. -flatten can make any color background, the color is controlled by the -background setting i...