Search found 148 matches

by rmabry
2018-01-18T03:49:58-07:00
Forum: PerlMagick
Topic: Statistics()
Replies: 8
Views: 83058

Re: Statistics()

What's the proper way to grab different chunks of the statistics array returned by $image->Statistics() ? It slipped my mind at the time (one short decade ago) to follow up on this, as we got a bit sidetracked (as we will again). In returning to the original perl script that got this started, I fou...
by rmabry
2012-12-08T20:25:28-07:00
Forum: PerlMagick
Topic: Solved (my) PerlMagick installation problem (Win7)
Replies: 1
Views: 9662

Solved (my) PerlMagick installation problem (Win7)

I recently mentioned some troubles building PerlMagick on Win7. My error was due to taking my instructions as per README.txt in the PerlMagick directory, which leaves out the line nmake before the line nmake install : For Windows systems, type perl Makefile.nt nmake install It is correctly described...
by rmabry
2012-12-01T10:26:35-07:00
Forum: Bugs
Topic: configure.cpp in 6.6.3-9 creates solution for AMD machines
Replies: 9
Views: 20832

Re: configure.cpp in 6.6.3-9 creates solution for AMD machin

In case it offers further clues, here are what I think are the relevant environmental variables that are set (after running vcvars32.bat ): INCLUDE=c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE;c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\ATLMFC\INCLUDE;C:\Program Files (x...
by rmabry
2012-11-30T21:58:49-07:00
Forum: Bugs
Topic: -draw produces a pimple on circles and arcs
Replies: 1
Views: 4677

-draw produces a pimple on circles and arcs

The following command draws a circle. But the circle has a zit. convert -size 200x200 xc:white -fill black -draw "circle 100,100 180,100" PNG32:badcircle.png Zoom in on the rightmost pixels and you'll see this: http://i.imgur.com/GMMms.png A fix? In the file draw.c , in the function TraceE...
by rmabry
2012-11-24T09:55:39-07:00
Forum: Bugs
Topic: configure.cpp in 6.6.3-9 creates solution for AMD machines
Replies: 9
Views: 20832

Re: configure.cpp in 6.6.3-9 creates solution for AMD machin

Looks like your building with the x64 version of Perl. Try the x86 version. Ha, thanks! Good grief, I even looked at that. Both versions of Perl are on the system and PATH had the 32-bit first in the list... weird. But no matter --- the 64-bit Perl stuff is now gone from my PATH. Now I might be clo...
by rmabry
2012-11-23T23:02:09-07:00
Forum: Bugs
Topic: configure.cpp in 6.6.3-9 creates solution for AMD machines
Replies: 9
Views: 20832

Re: configure.cpp in 6.6.3-9 creates solution for AMD machin

I'm not sophisticated, but I did leave unchecked the "Build 64-bit distro" box when I executed configure.exe. I then built a 32bit version (Release Win32) of IM 6.8.0-5. So why would I then get this error? fatal error LNK1112: module machine type 'X86' conflicts with target machine type 'x...
by rmabry
2012-11-23T22:50:29-07:00
Forum: Users
Topic: [Solved] Unable to compile windows 6.7.6-4
Replies: 8
Views: 20264

Re: [Solved] Unable to compile windows 6.7.6-4

Okay, I have tried and failed to build PerlMagick, as promised. The trouble is the same as this old thing:

viewtopic.php?f=3&t=16946&p=63366

So meet me there if you're interested.

Rick
by rmabry
2012-11-23T22:23:00-07:00
Forum: Users
Topic: [Solved] Unable to compile windows 6.7.6-4
Replies: 8
Views: 20264

Re: [Solved] Unable to compile windows 6.7.6-4

I'm trying to build the latest IM for Windows (on Windows 7 using VS 10) and get warnings right off the bat with the build of configure.exe, matching the previous post by hcllc. Specifically, there is this: "TargetPath [snip] does not match the Linker's OutputFile property value [snip] " (...
by rmabry
2011-05-01T09:14:37-07:00
Forum: Developers
Topic: nonfatal error building 64-bit 6.6.9-7 on Win7
Replies: 0
Views: 4327

nonfatal error building 64-bit 6.6.9-7 on Win7

My first build of the 64-bit IM (fresh from ImageMagick-6.6.9-7) using Visual Studio 10 gives the following error: jas_version.c 9>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppBuild.targets(1151,5): warning MSB8012: TargetPath(C:\ImageMagick\VisualMagick\wmf\..\lib\CORE_wmf.lib) do...
by rmabry
2011-01-16T07:34:07-07:00
Forum: Bugs
Topic: Convert does not preserve transparency
Replies: 5
Views: 16894

Re: Convert does not preserve transparency

Hi Glenn, Thanks, that works and solved related problems for me. So (I address this to to one and all), another lesson here is that convert with no parameters should not be expected to act as a copy command. [Edit: I mean, of course, where the input and output formats match.] I have been under the o...
by rmabry
2011-01-15T17:24:16-07:00
Forum: Bugs
Topic: Convert does not preserve transparency
Replies: 5
Views: 16894

Re: Convert does not preserve transparency

Same problem today, Windows 7, ImageMagick 6.6.7-0 2011-01-01 Q16. Using the image here, http://www.maik-juergens.de/imagemagick/image1.png I run convert image1.png image1-copy.png and get a copy with no transparency. identify image1.png image1.png PNG 46x48 46x48+0+0 8-bit DirectClass 538B 0.000u 0...
by rmabry
2010-09-13T12:13:29-07:00
Forum: PerlMagick
Topic: Extent and geometry
Replies: 1
Views: 9709

Extent and geometry

Below is the latest code in Magick.xs, around line 9695. Notice the placement of these two lines, about 15 lines into the snippet: geometry.x=(-geometry.x); geometry.y=(-geometry.y); This negation puzzles me, but no matter; it is in the regular API, too, not just in PerlMagick. But it seems to me th...
by rmabry
2010-09-13T05:56:42-07:00
Forum: Bugs
Topic: Compiling source code in Windows
Replies: 4
Views: 11261

Re: Compiling source code in Windows

I got around this by putting the define in magick_config.h
I'll try Pete's #define trick in the morning...
It worked (in magick-config.h, not magick_config.h). I have no idea why, but thanks, Pete.

Any prognosis for the problem?

Rick
by rmabry
2010-09-13T05:47:55-07:00
Forum: Bugs
Topic: configure.cpp in 6.6.3-9 creates solution for AMD machines
Replies: 9
Views: 20832

Re: configure.cpp in 6.6.3-9 creates solution for AMD machin

We're a victim of too much to do, too little time. As always, keep in mind that ImageMagick is open source. I know it well, I'm just trying to understand how I should be handling the situation and what it means. Anyone can submit a fix for this problem-- or you can wait until we can get around to f...
by rmabry
2010-09-12T22:25:31-07:00
Forum: Bugs
Topic: Compiling source code in Windows
Replies: 4
Views: 11261

Re: Compiling source code in Windows

Something still amiss. I get the (probably) same error in 6.4.4-1: ==================== 10>MagickCore module DLL export interface 10>Generating Code... 10>Compiling resources... 10>Linking... 10> Creating library ..\lib\CORE_RL_magick_.lib and object ..\lib\CORE_RL_magick_.exp 10>semaphore.obj : err...