Search found 245 matches

by rmagick
2009-01-17T15:10:13-07:00
Forum: Developers
Topic: Any Windows build changes since 6.4.5-3?
Replies: 4
Views: 10471

Re: Any Windows build changes since 6.4.5-3?

The Ruby folks have suggested an alternative using MinGW and MSYS, so I'll investigate that. Thanks for your offer to build a version to my spec. I really don't want to burden you with requests like that, but I'll hold on to your offer in case the MinGW approach fails.
by rmagick
2009-01-17T09:50:17-07:00
Forum: Developers
Topic: Any Windows build changes since 6.4.5-3?
Replies: 4
Views: 10471

Re: Any Windows build changes since 6.4.5-3?

I'll try it. I also have to be compatible with the pre-built Ruby 1.8.6. I don't know what my constraint will be there. I'll ask on the Ruby Forum. I could also use the most recent IM binary that was built with the older compiler.

Thanks.
by rmagick
2009-01-17T08:34:21-07:00
Forum: Developers
Topic: Any Windows build changes since 6.4.5-3?
Replies: 4
Views: 10471

Any Windows build changes since 6.4.5-3?

I'm trying to build a new Win32 version of RMagick using the latest Windows binary ImageMagick-6.4.8-6-Q8-windows-dll.exe. When I test using the new RMagick, the test fails with a number of "An application has made an attempt to load the C runtime library incorrectly" messages, and then &q...
by rmagick
2008-12-18T18:55:05-07:00
Forum: Users
Topic: 2 questions about -kerning
Replies: 7
Views: 14404

Re: 2 questions about -kerning

I'm sorry. I should've added a link. RVG's been around for some years now. It's fairly static.

http://www.imagemagick.org/RMagick/doc/rvgtut.html.

Follow the "Next" links to see the reference doc.
by rmagick
2008-12-18T18:04:54-07:00
Forum: Users
Topic: 2 questions about -kerning
Replies: 7
Views: 14404

Re: 2 questions about -kerning

You're correct. For my purposes, the kerning unit is a pixel. However, I'm not so much concerned with drawing using SVG as I am with supporting my Ruby RVG library, which generates MVG code. I've already got a rough-but-adequate implemenation of letter-spacing and word-spacing working but a kerning ...
by rmagick
2008-12-18T16:05:19-07:00
Forum: Users
Topic: 2 questions about -kerning
Replies: 7
Views: 14404

Re: 2 questions about -kerning

As such my tests seem to indicate it is in pixels . I agree. Well, almost but not quite pixels. I ran some quick tests using a string of 260 alphabetic characters at 3 different densities and 6 pointsizes. Each unit increase in the kerning value increased the average width/character by 1 pixel plus...
by rmagick
2008-12-17T16:55:32-07:00
Forum: Users
Topic: 2 questions about -kerning
Replies: 7
Views: 14404

2 questions about -kerning

Regarding the new -kerning option. What units are the value? Pixels? Points? English Metric Units?

Also, is there a corresponding -draw primitive?
by rmagick
2008-11-27T12:07:53-07:00
Forum: Users
Topic: How can I replece a color into a image?
Replies: 4
Views: 12616

Re: How can I replece a color into a image?

Use the -opaque option. Here's an example. http://www.imagemagick.org/Usage/color/#opaque
by rmagick
2008-11-24T15:44:53-07:00
Forum: Bugs
Topic: HSL to RGB conversion slightly different in 6.4.6
Replies: 4
Views: 9895

Re: HSL to RGB conversion slightly different in 6.4.6

Thanks for your offer! However, I don't think you'd get much use from my tests. I've really tried to focus the RMagick tests on validating RMagick, so they only incidentally turn up bugs in ImageMagick. For example, I found this particular problem because I have a test that round-trips the conversio...
by rmagick
2008-11-23T09:29:20-07:00
Forum: Bugs
Topic: HSL to RGB conversion slightly different in 6.4.6
Replies: 4
Views: 9895

HSL to RGB conversion slightly different in 6.4.6

I'm not asserting this is a bug, just that the result is different. This may also indicate that I don't understand how to properly use MagickCore to convert HSL to RGB. The test program converts "hsla(0,48,39,0)" to a MagickPixelPacket, then back to HSL with ConvertRGBToHSL. In 6.4.5-8, th...
by rmagick
2008-11-22T16:45:32-07:00
Forum: Bugs
Topic: Encipher/DecipherImage doesn't round-trip in 6.4.6-0
Replies: 1
Views: 6034

Encipher/DecipherImage doesn't round-trip in 6.4.6-0

The following program enciphers an image, then deciphers it. In 6.4.5-8, the deciphered image has the same signature as the original image. In 6.4.6-0 the signatures are different. The input image is http://home.nc.rr.com/foxhunter/Flower_Hat.jpg as usual. /* Tim Hunter, cyclists@nc.rr.com gcc `Magi...
by rmagick
2008-11-20T16:38:15-07:00
Forum: Users
Topic: iptc data & RMagick
Replies: 2
Views: 5686

Re: iptc data & RMagick

thorsten, please send a copy of the image to rmagick AT rubyforge DOT org, or post to the RMagick help forum on RubyForge (http://rubyforge.org/forum/?group_id=12) and include a URL where the image can be downloaded.
by rmagick
2008-11-19T17:03:34-07:00
Forum: Bugs
Topic: Temp file leak in 6.4.5-8
Replies: 1
Views: 4741

Temp file leak in 6.4.5-8

I hope this is enough to go by. If not let me know and I'll try to make a simple reproduction. $ convert -version Version: ImageMagick 6.4.5 2008-11-18 Q16 http://www.imagemagick.org I am observing a temporary file leak when the memory resource is severely cramped such that OpenCache calls AcquireUn...
by rmagick
2008-11-16T16:31:40-07:00
Forum: Users
Topic: Make colors more dark and vivid
Replies: 1
Views: 4746

Re: Make colors more dark and vivid

Check out the -modulate option. I used -modulate to change your image to something very similar to the one you posted. This command simply reduces the brightness of the input image to 80% of its original value and leaves the saturation and hue unchanged. I'm sure you could come closer with a little ...
by rmagick
2008-11-12T14:05:52-07:00
Forum: Users
Topic: enclose jpg in png 'border'
Replies: 9
Views: 17704

Re: enclose jpg in png 'border'

The JPEG format doesn't support transparency. Save the resulting image as a PNG or GIF instead.