Search found 1015 matches

by el_supremo
2006-10-25T12:49:01-07:00
Forum: Users
Topic: How to make "convert" retain size & resolution
Replies: 7
Views: 23388

I think you will have to be a bit more precise about what you mean by What I want is to simply retain the size and resolution of the original version If by "size and resolution" you mean that an input JPG which is 1024x768 pixels (size) at 100dpi (resolution) should produce a PDF which IM ...
by el_supremo
2006-10-21T08:35:15-07:00
Forum: Users
Topic: Imagemagick and c++
Replies: 2
Views: 10423

> I blindly copy&pasted those libs and didn't notice that the last one should also have the ending .lib instead of .dll

Sorry about that. I have edited my post to correct the references to .dll that should be .lib just in case someone else uses that info.

Pete
by el_supremo
2006-10-19T09:26:09-07:00
Forum: Bugs
Topic: Save a "Bilevel" TIFF image ?
Replies: 3
Views: 49309

[EDIT: I'm using ImageMagick 6.3.0 10/14/06 Q8 binary] I've been playing with the original code and I also get problems. It produces a TIF which crashes PSP X. When I identify the TIF, it has 3 colours: Histogram: 16: none #000000FF 94000: white #FFFFFF00 155984: rgba(255,255,255,0) #FFFFFFFF Colorm...
by el_supremo
2006-10-18T08:27:12-07:00
Forum: Users
Topic: Antialiased text becoming unreadable
Replies: 1
Views: 6771

This may be related to my question in the MagickWand forum. Try using DrawSetFillColor instead of DrawSetStrokeColor and adjust the font size accordingly. BTW. You mentioned that adjusting the font weight didn't help with this specific problem. Have you found that it ever alters the appearance of te...
by el_supremo
2006-10-17T11:34:10-07:00
Forum: Users
Topic: Imagemagick and c++
Replies: 2
Views: 10423

[EDIT: Magick beat me to it and have a better idea - delete this if it's redundant] The windows installer does not by default install the headers and libraries you need. I think you can run the installer again and when you get to the "Select Additional Tasks" window, select only the "...
by el_supremo
2006-10-15T11:04:03-07:00
Forum: MagickWand
Topic: DrawSetFontWeight
Replies: 0
Views: 12274

DrawSetFontWeight

Windows binary 6.2.9-8. I've been trying to overlay text on a GIF image using MagickWand's DrawAnnotation function and I would like to produce small, "thin" text. The problem is that I can't seem to find a combination of font and font size which will produce text as thin and clear as the t...
by el_supremo
2006-10-14T15:14:29-07:00
Forum: MagickWand
Topic: Effect of MagickSetImageColormapColor?
Replies: 1
Views: 14619

Effect of MagickSetImageColormapColor?

I'm using windows binary installation of 6.2.9-8. I've written a C program which uses MagickWand to extract part of a GIF image. It reads in the GIF (which has 64 colours), changes it to a grayscale image and then quantizes it to 16 colours. I then use MagickSetImageColormapColor to force the first ...
by el_supremo
2006-10-13T12:47:21-07:00
Forum: Users
Topic: type-ghostscript.xml
Replies: 2
Views: 9075

Thanks!!

Pete
by el_supremo
2006-10-13T09:32:55-07:00
Forum: Users
Topic: type-ghostscript.xml
Replies: 2
Views: 9075

type-ghostscript.xml

I uninstalled the existing IM 6.2.6 and installed Ghostscript 8.54. I then installed IM 6.2.9-8 Q8. When I run identify -list type the output lists all available fonts including those with GS. But then identify gives the error message: identify: unable to open file 'type-ghostscript.xml': No such fi...
by el_supremo
2006-09-24T17:03:14-07:00
Forum: Users
Topic: Newbie, basic CMD line problems
Replies: 0
Views: 5487

Windows has its own convert command (I don't know what it does). If you don't have the IM convert in your current directory then windows will find its version which will complain that it doesn't know what *.jpg is. One way around this is to rename the IM convert program to imconvert and then put the...
by el_supremo
2006-08-17T11:30:27-07:00
Forum: Users
Topic: converting .cr2 images
Replies: 0
Views: 5615

This isn't an ImageMagick problem. You would be better off asking this question in a group, such as the 10D group on yahoo - http://groups.yahoo.com/group/Canon-10D/. However, I may be reading more into your post than is there, but I think you have to transfer the images from the camera onto your co...
by el_supremo
2006-08-11T14:20:54-07:00
Forum: Users
Topic: Simple Text Label Examples Fails
Replies: 16
Views: 53403

Looks like you haven't got the Candice font.
Try it with:
-font courier-new

or:
-font times-new-roman

Best Wishes
Pete
by el_supremo
2006-08-05T21:57:34-07:00
Forum: MagickWand for PHP
Topic: Possible BUG cropping GIF files
Replies: 2
Views: 23120

I was using Rexx when I was doing the testing so I don't know if those two functions are implemented in PHP but both are definitely in MagickWand. MagickSetImagePage is documented here:
http://studio.imagemagick.org/api/magic ... tImagePage

Pete
by el_supremo
2006-08-05T16:40:02-07:00
Forum: MagickWand for PHP
Topic: Possible BUG cropping GIF files
Replies: 2
Views: 23120

I think I've found the solution to this problem. After MagickCropImage add: MagickSetImageExtent($mgck_wnd, $w, $h) where $w,$h are the dimensions used in the crop. The GIF header specifies a width and height of a logical screen on which the image(s) in the file will be displayed and this logical sc...
by el_supremo
2006-07-13T15:25:10-07:00
Forum: Users
Topic: Need to Batch .JPG Modify - Linux
Replies: 3
Views: 14418

I'm pretty sure the problem lies with the quotes that you use in the for statement. You've used the normal quote character whereas I think you need back-quotes:
for image in `ls *.jpg`

Best Wishes
Pete