Search found 8 matches
- 2011-02-25T16:47:58-07:00
- Forum: Users
- Topic: Use ImageMagick without install (in VBA)
- Replies: 5
- Views: 15220
Re: Use ImageMagick without install (in VBA)
Hmm....did you install the DLL version or the static version? I got it to work with the static version from http://www.imagemagick.org/script/binar ... hp#windows.
- 2011-02-24T01:43:07-07:00
- Forum: Users
- Topic: Use ImageMagick without install (in VBA)
- Replies: 5
- Views: 15220
Re: Use ImageMagick without install (in VBA)
Is vcomp100.dll in the same directory as ImageMagickObject.dll? I checked ImageMagickObject.dll and there's a dependency on that other library, so put vcomp100.dll in the same place and try registering ImageMagickObject.dll again.
- 2011-02-23T18:06:57-07:00
- Forum: Users
- Topic: Use ImageMagick without install (in VBA)
- Replies: 5
- Views: 15220
Re: Use ImageMagick without install (in VBA)
At the very least the library has to be registered as a COM object so that it can be invoked by VBA. You do this with "regsvr32" at the command prompt like:
where foo.dll is the IM COM library (don't know what it is offhand, sorry)
Code: Select all
c:\temp>regsvr32 foo.dll
- 2011-02-23T06:15:43-07:00
- Forum: Users
- Topic: Combining bits from two images
- Replies: 3
- Views: 7798
Re: Combining bits from two images
Ah, okay. I guess I got confused about how to use u and v in the fx block. If fx isn't the right thing to use, what would be more appropriate? There are so many things IM can do; it's quite overwhelming...
- 2011-02-22T23:41:29-07:00
- Forum: Users
- Topic: Combining bits from two images
- Replies: 3
- Views: 7798
Combining bits from two images
Hi all- I'm trying to use ImageMagick to perform a bit of steganography similar to the tree/cat picture http://en.wikipedia.org/wiki/Steganography#Digital_steganography . The built-in -stegano command does not seem to do what I want insofar as I'd like to preserve the "private" picture in some ...
- 2008-03-07T10:58:08-07:00
- Forum: Users
- Topic: IM and MFC in Debug mode causing link errors
- Replies: 1
- Views: 5344
Figured it out
Hi all- Just in case someone else runs into this problem, here is the solution: My project was built with the MFC libraries being marked as shared, not static, though I had built the ImageMagick libraries as static. Thus the problem; I recreated the entire project, this time using MFC as static ...
- 2008-03-06T13:11:50-07:00
- Forum: Users
- Topic: IM and MFC in Debug mode causing link errors
- Replies: 1
- Views: 5344
IM and MFC in Debug mode causing link errors
Aloha all- I have tried very hard to solve this entirely on my own with help from Google, but have had absolutely no joy. I am trying to write an app in VS2005 that links against ImageMagick-6.3.8. Using VS2005, I built the libs using the VisualStaticMT project I created using the wizard, along with ...
- 2007-03-03T13:42:40-07:00
- Forum: Users
- Topic: Using Magick++ ... Can't link with VS2005
- Replies: 1
- Views: 8472
Using Magick++ ... Can't link with VS2005
Hi all- I have downloaded and successfully built a single-threaded static config of Magick++ (from the VisualMagic directory) using VS2005sp1. All the projects built successfully: I have a ImageMagick-6.3.2\VisualMagick\lib directory filled with CORE_DB_*.lib and CORE_RL_*.lib files (as well as the ...