Search found 148 matches

by rmabry
2007-01-29T07:04:03-07:00
Forum: Bugs
Topic: AffineTransform bug in PerlMagick
Replies: 2
Views: 13104

AffineTransform bug in PerlMagick

When giving the 6-element affine matrix in PerlMagick, the last element is not read, making ty=0 in all cases. I think each of the comparisons of length below should be decreased by one. I have 6.3.2-2 at the moment. if (av_len(av) >= 1) draw_info->affine.sx=(double) SvNV(*(av_fetch(av,0,0))); if (a...
by rmabry
2007-01-29T07:00:05-07:00
Forum: Bugs
Topic: AffineImageTransformation broken
Replies: 16
Views: 51762

Bilinear in contrast just averages out all the pixel colors in the very center of the inter-pixel space, whcih sort of 'blurs' a 'hash' or 'dither pattern' in images. Right, an average weighted by the areas produced when a transformed pixel cuts the original grid of pixels. It strikes me as being t...
by rmabry
2007-01-28T19:19:48-07:00
Forum: Bugs
Topic: AffineImageTransformation broken
Replies: 16
Views: 51762

X- and y-shears look perfect. I should have said this modulo interpolation. With very stretchy shears, the interpolation has a lot to do with the results, obviously. The "perfect" aspect only meant with regard to positions of the (centers of the) transformed pixels, my particular first co...
by rmabry
2007-01-27T11:55:53-07:00
Forum: PerlMagick
Topic: disable logging to Win32::EventLog
Replies: 3
Views: 24083

I have installed ImageMagick-6.3.2-1-Q8-windows-dll.exe, and I still get excessive logging. Is there a way to turn off logging? Just wondering, is it possible you still have the older PerlMagick with that? I'm not sure what your setup might be like, but I have once or twice built a new version of t...
by rmabry
2007-01-27T11:41:54-07:00
Forum: Bugs
Topic: AffineImageTransformation broken
Replies: 16
Views: 51762

The best test would be to try a null transform to make sure it comes out right. With the default interpolation (bilinear), the null (identity) transform comes out exactly correct. So do flips and flops and 90-degree rotations, all a good sign. X- and y-shears look perfect. Pure scaling also looks g...
by rmabry
2007-01-25T07:52:00-07:00
Forum: Developers
Topic: GetStrokeColor with stroke_pattern
Replies: 6
Views: 22193

We'll add -fill-pattern and -stroke-pattern to the command line in the next point release. Cool. Is -fill-pattern synonymous with -tile ? And how does the -origin setting fit inhere? I can imagine situations where an independent origin for strokes and fills is desirable. On a commandline it makes s...
by rmabry
2007-01-24T20:54:59-07:00
Forum: Developers
Topic: GetStrokeColor with stroke_pattern
Replies: 6
Views: 22193

magick wrote: We'll add fill-pattern and stroke-pattern to Annotate() and Draw() or PerlMagick in the next point release.


How about the command line?
by rmabry
2007-01-22T13:34:41-07:00
Forum: Users
Topic: Text with gradient stroke?
Replies: 27
Views: 62942

Re: Text with gradient stroke?

rmabry wrote: I'll bet if you ask nicely, The Wizard would make this available in the next release


See what I mean?

http://redux.imagemagick.org/discourse- ... 5429#25429

Rick
by rmabry
2007-01-21T22:45:58-07:00
Forum: Bugs
Topic: AffineImageTransformation broken
Replies: 16
Views: 51762

In the mean time I have downloaded and built the latest SRC RPM from the alpha area, and ran it through all IM Examples. I can now say that Affine Transformations has passed ALL my tests. Which version is that? I grabbed a beta yesterday (6.3.2-1) and don't want to rebuild if I don't need to. The o...
by rmabry
2007-01-21T22:20:03-07:00
Forum: Developers
Topic: GetStrokeColor with stroke_pattern
Replies: 6
Views: 22193

GetStrokeColor with stroke_pattern

I asked about it in the Users forum, http://redux.imagemagick.org/discourse-server/viewtopic.php?p=25356 but maybe it is better here: There is code in draw_private.h, in the function GetStrokeColor, that allows for strokes to be filled with a pattern, just as are fills. Is this not yet implemented i...
by rmabry
2007-01-21T12:31:21-07:00
Forum: Bugs
Topic: MagickToMime bug
Replies: 4
Views: 18163

magick wrote: Change
  • free(mime);
to
  • mime=(char *) RelinquishMagickMemory(mime);


That does it - thanks.

Rick
by rmabry
2007-01-20T20:08:03-07:00
Forum: Bugs
Topic: MagickToMime bug
Replies: 4
Views: 18163

Can you generate a stack trace for us? We tried to reproduce the problem but MagickToMime() works for us. I should have mentioned that this is on Windows, compiled with VC++7 from ImageMagick-6.3.2-1-windows.zip (Beta); perl, v5.8.8 built for MSWin32-x86-multi-thread. I executed the following scrip...
by rmabry
2007-01-20T15:51:21-07:00
Forum: Developers
Topic: linker errors on UTIL's with 6.3.2-0 and VC++7
Replies: 1
Views: 10423

Re: linker errors on UTIL's with 6.3.2-0 and VC++7

rmabry wrote: doing likewise with 6.3.2-0 gave me linker errors


No troubles (of that sort) with the 6.3.2-1 Beta, though.

Rick
by rmabry
2007-01-20T15:48:19-07:00
Forum: Bugs
Topic: MagickToMime bug
Replies: 4
Views: 18163

MagickToMime bug

The PerlMagick MagickToMime method crashes, at least in the 6.3.2 Beta I grabbed yesterday.

I freed my version of the offending free() call at line 5200 in Magick.xs and mine/mime now seems well.

Code: Select all

# free(mime);
Rick
by rmabry
2007-01-20T10:06:25-07:00
Forum: Users
Topic: Text with gradient stroke?
Replies: 27
Views: 62942

Re: Text with gradient stroke?

I am trying to create a text with a gradient stroke. Can that actually be done? There is actually code in ImageMagick that lets the stroke come from any image or pattern, just as -tile can be used with fills. (Check out instances of draw_info->stroke_pattern, esp. in the file draw_private.h, at lea...