Search found 21 matches

by Minok
2014-04-29T14:35:59-07:00
Forum: Developers
Topic: How to CCITT decode a blob - BlobToImage isn't doing it.
Replies: 1
Views: 5629

How to CCITT decode a blob - BlobToImage isn't doing it.

I'm getting a CCITT type 6 (group 4) compressed blob out of a CGM file, that represents the contents of a single tile in that format. So its 920 bytes worth of CCITT compressed bitonal (B&W) data. I'm trying to create an imagemagick image out of it but that process just fails and returns null, w...
by Minok
2014-04-28T16:09:09-07:00
Forum: Developers
Topic: What .h and .lib files to include/link against ?
Replies: 4
Views: 9765

Re: What .h and .lib files to include/link against ?

Ok, I managed to get my library hell between this vast set of libraries, the other 3rd party libraries and my own application untangled. Whew. (Ignore the default MSVCRT, but not LIBCMT was the key). So it appears I've worked my way through the problem. Hopefully this set of posts will serve to help...
by Minok
2014-04-25T15:46:32-07:00
Forum: Developers
Topic: What .h and .lib files to include/link against ?
Replies: 4
Views: 9765

Re: What .h and .lib files to include/link against ?

Ok, some progress. Getting all of the code generation settings alinged to use MT, and not ignoring LIBCMT but ignoring MSVCRT to get rid of some (already declared in) linker problems has me down to ONE remaining linker error: Error 1 error LNK2001: unresolved external symbol _URLDownloadToFileA@20 C...
by Minok
2014-04-25T14:48:33-07:00
Forum: Developers
Topic: What .h and .lib files to include/link against ?
Replies: 4
Views: 9765

Re: What .h and .lib files to include/link against ?

Well, putting all 27 static libraries in the Visual Studio "Additional Dependencies" field does get rid of the link issues (UGH!) Really? No way to do this without such a huge list of libraries, the bulk of which I'm not likely to even use? Now I need to figure out the last few: one unreso...
by Minok
2014-04-25T13:17:54-07:00
Forum: Developers
Topic: What .h and .lib files to include/link against ?
Replies: 4
Views: 9765

Re: What .h and .lib files to include/link against ?

Here is the start of the stream of linker error messages... Error 273 error LNK2001: unresolved external symbol _cmsCloseProfile C:\_Projects\<some path>\CORE_DB_magick_.lib(profile.obj) Error 256 error LNK2019: unresolved external symbol _BZ2_bzclose referenced in function _CloseBlob C:\_Projects\<...
by Minok
2014-04-24T16:07:33-07:00
Forum: Developers
Topic: What .h and .lib files to include/link against ?
Replies: 4
Views: 9765

What .h and .lib files to include/link against ?

Not being able to find a post on the internet following many searches and some time, I'm going to ask this basic question here. I'm wanting to use ImageMagick as static libraries (.lib) that I will link to from my own c/c++ program - by using the C API. Pretty straight forward. I downloaded the sour...