Search found 7 matches
- 2015-04-15T20:03:06-07:00
- Forum: Bugs
- Topic: DLL dependency errors Windows 8.1 and Server 2012 R2
- Replies: 1
- Views: 9148
DLL dependency errors Windows 8.1 and Server 2012 R2
I'm using the dlls (CORE_RL_MAGICK_.dll etc.) for image manipulation. It works in Windows 7 but it is broken on Windows 8.1 and Windows Server 2012 R2. I have even compiled the dlls from source using Visual Studio 2013 on a Windows 8.1 machine, but the dlls still have missing dependencies. If I open ...
- 2011-07-25T21:03:56-07:00
- Forum: Bugs
- Topic: MagickCore bug on Windows 64 bit
- Replies: 1
- Views: 4935
Re: MagickCore bug on Windows 64 bit
Update: When compiling IM 64 bit from scratch in VS and using those generated dlls it works. Something is odd with the 64 bit precompiled dlls. If you google this error you will see that a lot of third party apps/dlls get this error. My guess is that the system's temp dir is hard coded into the ...
- 2011-07-25T09:13:54-07:00
- Forum: MagickWand
- Topic: MagickExtentImage broken on 64 bit Windows
- Replies: 11
- Views: 34932
Re: MagickExtentImage broken on 64 bit Windows
Update: I compiled IM 64 bit in VS and now it works. For some reason the pre-compiled dll:s for 64 bit was causing this error.
- 2011-07-21T21:29:29-07:00
- Forum: MagickWand
- Topic: MagickExtentImage broken on 64 bit Windows
- Replies: 11
- Views: 34932
Re: MagickExtentImage bug for negative offsets on 64 bit
The MagickExtentImage is broken on 64 bit period. I did some tests and the results change randomly depending on if you do some image manipulation before or after the MagickExtentImage call. For example this code will always return a blank canvas: MagickWandGenesis(); MagickWand *wand; wand ...
- 2011-07-21T16:12:27-07:00
- Forum: Bugs
- Topic: MagickCore bug on Windows 64 bit
- Replies: 1
- Views: 4935
MagickCore bug on Windows 64 bit
If I compile and run a MagickCore example (the first example for instance) on a Windows 64 bit OS, I get this runtime error: Magick: no decode delegate for this image format `C:/Users/PHILIP~1/AppData/Local/Temp/magick-9HWtB227' @ error/constitute.c/ReadImage/532. The same example on Windows 32 bit ...
- 2011-07-21T15:13:11-07:00
- Forum: MagickWand
- Topic: MagickExtentImage broken on 64 bit Windows
- Replies: 11
- Views: 34932
Re: MagickExtentImage bug for negative offsets on 64 bit
Also, MagickExtentImage totally ignores the gravity, which is also a bug. The offsets should be taken from the gravity, not from the top left corner.
- 2011-07-21T14:00:08-07:00
- Forum: MagickWand
- Topic: MagickExtentImage broken on 64 bit Windows
- Replies: 11
- Views: 34932
MagickExtentImage broken on 64 bit Windows
When you set a negative offset in MagickExtentImage the resulting image becomes blank on a 64 bit OS. The same exact code on a 32 bit OS works perfectly. Here is a code example: MagickWandGenesis(); MagickWand *wand; wand = NewMagickWand(); MagickReadImage(wand, "C:\\1.jpg"); MagickExtentImage(wand ...