Search found 25563 matches

by fmw42
2008-04-05T13:01:29-07:00
Forum: Users
Topic: Gradient Effect
Replies: 21
Views: 40814

Re: Gradient Effect

I just uploaded a new version. I fixed several places where there was a typo that caused the errors in trapping on parameters. I hope I caught them all. Let me know if there are any further errors. On my Mac, I don't seem to need the extension. But I have no experience on other systems. I hope I can...
by fmw42
2008-04-05T11:30:27-07:00
Forum: Users
Topic: Gradient Effect
Replies: 21
Views: 40814

Re: Gradient Effect

Replies to two issues: 1. you can leave the .sh off and just use: texteffect ...options as shown in examples... outputfile use -t "some text" -s outline -e wedge-left etc for example or you can add the .sh and use: texteffect.sh ...options as shown in examples... outputfile 2. thanks for t...
by fmw42
2008-04-04T22:05:14-07:00
Forum: Users
Topic: rotate image and give transparent background
Replies: 0
Views: 4465

Re: rotate image and give transparent background

You have to specify the background before the rotate.

This works for me

convert lena2g.jpg -background none -rotate 45 tmp.png
by fmw42
2008-04-04T12:07:59-07:00
Forum: Users
Topic: 32bit single channel tiffs?
Replies: 7
Views: 19558

Re: 32bit single channel tiffs?

Please explain what you expect to see after your conversion. Also I am not sure you uploaded the correct image. I downloaded it (and it was all white) and renamed it and did a verbose info and this is what I got (still 1-bit all black pixels). convert test_white.tif -verbose info: Image: test_white....
by fmw42
2008-04-04T10:04:38-07:00
Forum: Users
Topic: Tiff2PDF.
Replies: 1
Views: 7811

Re: Tiff2PDF.

ImageMagick is available for Windows and Unix systems and does convert tiff to pdf, but I don't know about your Wang anotations. You could post a sample and someone could try it.

http://www.imagemagick.org/script/index.php
by fmw42
2008-04-04T10:00:53-07:00
Forum: Users
Topic: How to crop multiple images and place them in one image?
Replies: 8
Views: 17816

Re: How to crop multiple images and place them in one image?

Your crop size and geometry size are not consistent and your crop size is bigger than your skyblue background.

If you want a self-expanding background, then see layers composite
http://www.imagemagick.org/Usage/layers/#merge
by fmw42
2008-04-04T09:53:33-07:00
Forum: Users
Topic: 32bit single channel tiffs?
Replies: 7
Views: 19558

Re: 32bit single channel tiffs?

If image.tif is your input, then I think your -verbose info is saying that you have a binary image with a matte color of 74 and a border color of 233 and all the graylevels are black (from the min and max and mean and std). So even though it is 32-bit, it is basically a 32-bit binary image - with on...
by fmw42
2008-04-04T09:45:52-07:00
Forum: Users
Topic: Gradient Effect
Replies: 21
Views: 40814

Re: Gradient Effect

One way is as follows: First make an extra large gradient image at the angle you want and crop out the middle section to the size of your text. Then use that image with -tile as follows: convert -size 512x512 gradient: -rotate -45 \ -gravity center -crop 320x100+0+0 grad45.png (alternate for 45degre...
by fmw42
2008-04-03T19:49:38-07:00
Forum: Bugs
Topic: possible bug in IM 6.4.0-3 Q16
Replies: 2
Views: 8138

Re: possible bug in IM 6.4.0-3 Q16

thanks
by fmw42
2008-04-03T19:24:02-07:00
Forum: Bugs
Topic: possible bug with new string formats in IM 6.4.0-3
Replies: 3
Views: 9498

Re: possible bug with new string formats in IM 6.4.0-3

Its not in the reporting of -verbose info:. I think it is in the return information from

convert image -format "%[min] info:
convert image -format "%[max] info:


Thanks

Fred
by fmw42
2008-04-03T18:59:57-07:00
Forum: Bugs
Topic: possible bug with new string formats in IM 6.4.0-3
Replies: 3
Views: 9498

possible bug with new string formats in IM 6.4.0-3

I am seeing a difference in the min and max string formats compared to generating them using bash sed. Here is an example using a grayscale image of lena http://www.fmwconcepts.com/misc_tests/lena2g.jpg in IM 6.4.0-3 Q16: Old Method using SED: tmp2="lena2g.jpg" data=`convert $tmp2 -verbose...
by fmw42
2008-04-03T18:09:46-07:00
Forum: Developers
Topic: My scripts are breaking due to a change in the -verbose info
Replies: 2
Views: 8142

Re: My scripts are breaking due to a change in the -verbose info

Thanks. That works fine. I should have thought of that. Sorry. I cannot see the forest for the trees! :oops:
by fmw42
2008-04-03T18:06:06-07:00
Forum: Bugs
Topic: possible bug in IM 6.4.0-3 Q16
Replies: 2
Views: 8138

possible bug in IM 6.4.0-3 Q16

Hello, I just upgraded from IM 6.3.8-11 Q16 to 6.4.0-3 Q16 and tried to run a script that I had developed that I thought? had been working before, but had not finalized it and had it on hold for a while. Now when I run it, I get an error. I took the line that was giving the error and converted it to...
by fmw42
2008-04-03T16:09:28-07:00
Forum: Bugs
Topic: PDF in 300 DPI from jpeg, it is possible ?
Replies: 1
Views: 14025

Re: PDF in 300 DPI from jpeg, it is possible ?

the convert syntax has the input image right after convert. have you tried

convert file.jpg -density 300 file.pdf