Search found 5 matches

by jxbp
2012-01-08T13:38:31-07:00
Forum: Users
Topic: error LNK2019: unresolved external symbol ConstituteImage
Replies: 2
Views: 9292

Re: error LNK2019: unresolved external symbol ConstituteImag

I tried compiling the button demo, and it doesn't work either. Getting a bunch of LNK2019 errors similar to what I had before with ConstituteImage. This is the first time I have worked with C source so I don't really have a sense of what might be causing this. The function definitions all seem to be ...
by jxbp
2012-01-08T12:10:24-07:00
Forum: Users
Topic: error LNK2019: unresolved external symbol ConstituteImage
Replies: 2
Views: 9292

error LNK2019: unresolved external symbol ConstituteImage

Hi everyone,

I am just starting to work with ImageMagick, in c++ on Visual Studio 2010. However I keep encountering this error whenever I try to use ConstituteImage:

error LNK2019: unresolved external symbol _imp_ConstituteImage referenced in function _main

I am trying to write a png image, so ...
by jxbp
2012-01-08T10:23:17-07:00
Forum: Users
Topic: Problems linking ImageMagic.h, syntax error: ssize_t
Replies: 4
Views: 12457

Re: Problems linking ImageMagic.h, syntax error: ssize_t

Thanks Magick, that resolved most of the errors. But a couple of errors still remain:

error C2485: '_restrict' : unrecognized extended attribute

and that error repeats for several lines in stdlib.h.

I was wondering, I got the source codes from ftp://ftp.fifi.org/pub/ImageMagick/windows/
and I ...
by jxbp
2012-01-07T21:31:27-07:00
Forum: Users
Topic: Problems linking ImageMagic.h, syntax error: ssize_t
Replies: 4
Views: 12457

Re: Problems linking ImageMagic.h, syntax error: ssize_t

Thanks for your response, I tried your suggestions. I am trying to write a c++ program, so for the includes I used something like:
extern "C" {
#include <magick/MagickCore.h>
}
but the same errors still pop up. I have taken a look at one of the file where the errors are and the line that was marked ...
by jxbp
2012-01-07T19:46:10-07:00
Forum: Users
Topic: Problems linking ImageMagic.h, syntax error: ssize_t
Replies: 4
Views: 12457

Problems linking ImageMagic.h, syntax error: ssize_t

Hi everyone,

I new to ImageMagick and was hoping to start working with it, but when I tried to link ImageMagick.h, a series of errors come up during building, all relating to ssize_t.
I am currently working with c++ in visual studio 2010, on windows 7. I am trying to work with the source code for ...