Search found 7 matches

by alanchcw
2019-10-15T16:30:27-07:00
Forum: MagickWand
Topic: Reduce the size of the final built file
Replies: 0
Views: 613646

Reduce the size of the final built file

Hi,

Currently I am using MagickWand to create a DLL which can convert image files from one format to anther.

Therefore, all functions I use is just as below:

MagickWandGenesis
NewMagickWand
MagickReadImage
MagickWriteImage
DestroyMagickWand
MagickWandTerminus

Now I build ImageMagick as a static ...
by alanchcw
2019-10-01T23:32:03-07:00
Forum: MagickWand
Topic: Redistribute program using MagickWand?
Replies: 0
Views: 243809

Redistribute program using MagickWand?

Hi,

My program will use MagickWand. I wonder how to redistribute it without installing ImageMagick on the target computer.

In the thread https://imagemagick.org/discourse-server/viewtopic.php?f=1&t=8136 , it said "The ImageMagick binaries requires Window registry entries to work properly. ". Does ...
by alanchcw
2019-10-01T23:28:03-07:00
Forum: MagickWand
Topic: How to Link to MagickWand library statically?
Replies: 0
Views: 240666

How to Link to MagickWand library statically?

Hi,

I follow the instructions in https://imagemagick.org/script/advanced-windows-installation.php and build ImageMagick as "Static Multi-threaded runtimes" settings.

Then I create a test project TestMagick and add https://imagemagick.org/source/wand.c to my project.

Then I add the following path ...
by alanchcw
2019-09-30T16:32:10-07:00
Forum: Magick++
Topic: Several Questions regarding Magick++
Replies: 4
Views: 126183

Re: Several Questions regarding Magick++

These are all .lib files. And from the sizes of these files(several MB), I think they are not import library for DLLs, but static libraries.

I check the projects. Yes, they are using "Debug" settings. So I think what you guess is correct. DB means "Debug", not "Database.
by alanchcw
2019-09-29T16:23:44-07:00
Forum: Magick++
Topic: Several Questions regarding Magick++
Replies: 4
Views: 126183

Re: Several Questions regarding Magick++

I check the VisualMagick\lib subfolder and also find some files related to Magick++:

Sorry but the image cannot show, so I have to paste the URL:

https://www.dropbox.com/s/w5wd61fp96nmn ... Magick.jpg

But these files contain a DB prefix, seems to be related to database?
by alanchcw
2019-09-29T03:01:34-07:00
Forum: Users
Topic: Different Built Settings for ImageMagick++
Replies: 0
Views: 159986

Different Built Settings for ImageMagick++

Hi,

I just download and built ImageMagick++ source files in VS2015.

I see there are 3 settings:

VisualDynamicMT.sln (Dynamic Multi-threaded DLL runtimes)
VisualStaticMTD.sln (Static Multi-threaded DLL runtimes)
VisualStaticMT.sln (Static Multi-threaded runtimes)

I try to understand the meaning ...
by alanchcw
2019-09-29T02:34:29-07:00
Forum: Magick++
Topic: Several Questions regarding Magick++
Replies: 4
Views: 126183

Several Questions regarding Magick++

Hi,

I am new to ImageMagick. I download the ImageMagick sources and built them in VS2015 successfully.

Now I try to understand Magick++. I read the online documents back and force, including:

1. https://imagemagick.org/script/magick++.php
2. https://imagemagick.org/Magick++/Install.html

But ...