Search found 13 matches

by vhmth
2014-09-15T22:27:27-07:00
Forum: Users
Topic: DNG Delegate Fails When Statically Linking
Replies: 4
Views: 2969

Re: DNG Delegate Fails When Statically Linking

I'm still curious as to why this is happening, but I ended up writing a little bit of C that converted a RAW image to a TIFF with libraw (http://www.libraw.org/). I then convert from there using VIPS.
by vhmth
2014-09-15T12:22:27-07:00
Forum: Users
Topic: DNG Delegate Fails When Statically Linking
Replies: 4
Views: 2969

Re: DNG Delegate Fails When Statically Linking

Bump?
by vhmth
2014-09-09T15:05:39-07:00
Forum: Users
Topic: DNG Delegate Fails When Statically Linking
Replies: 4
Views: 2969

Re: DNG Delegate Fails When Statically Linking

@snibgo Ah that makes sense. Any other magick gurus - bump? A bit of additional info: I wrote a script to watch the /tmp directory and copy any new items to my Desktop when I read the image into the wand, and it seems like the PNG is being created properly, so I'm at a lost as to what is going on.
by vhmth
2014-09-08T16:14:14-07:00
Forum: Users
Topic: DNG Delegate Fails When Statically Linking
Replies: 4
Views: 2969

DNG Delegate Fails When Statically Linking

So my current setup is IM 6.8.9-5 compiled to a .a static archive file which is linked against Go -> C Bindings (https://github.com/gographics/imagick). I noticed that delegate.c contained the mapping for delegates, and I changed: " <delegate decode=\"dng:decode\" command=\""...
by vhmth
2014-03-25T14:03:13-07:00
Forum: Users
Topic: Error When Cross-Compiling with Android NDK
Replies: 4
Views: 8504

Re: Error When Cross-Compiling with Android NDK

Thanks for the link! After looking through it, it seems like the issue the OP was facing is not the same issue I am facing. I am simply seeing the error of "cannot run test program while cross compiling". When I leave out the "--host=..." flag, it gives me the error: checking whe...
by vhmth
2014-03-25T13:01:36-07:00
Forum: Users
Topic: Error When Cross-Compiling with Android NDK
Replies: 4
Views: 8504

Re: Error When Cross-Compiling with Android NDK

Bump? This seems to happen for any cross-compilation.
by vhmth
2014-03-25T02:35:41-07:00
Forum: Users
Topic: Error When Cross-Compiling with Android NDK
Replies: 4
Views: 8504

Error When Cross-Compiling with Android NDK

Hey all. I'm currently cross-compiling all ImageMagick delegate libs with no problem using the Android NDK. However, when I try to do so with IM itself, I'm getting the error "configure: error: cannot run test program while cross compiling". Any ideas? [ 90%] Performing configure step for ...
by vhmth
2014-02-14T19:15:08-07:00
Forum: Users
Topic: Incorrect JPEG Version
Replies: 9
Views: 9917

Re: Incorrect JPEG Version

I figured out the issue. It was, as the error suggested, a different version of libjpeg being linked. In case people are curious as to what happened, let me set the landscape of the situation: 1. We build ImageMagick with its delegate libraries. 2. We build FreeImage with its own delegate libraries....
by vhmth
2014-02-11T18:51:32-07:00
Forum: Users
Topic: Incorrect JPEG Version
Replies: 9
Views: 9917

Re: Incorrect JPEG Version

To keep you guys posted, I have successfully built and linked IM with libpng and zlib (compiled from source). I have also tried the following: 1. Tried compiling on another machine with basically nothing on it. 2. Updated my IM lib itself. 3. Updated libjpeg to v9. Updating libjpeg to v9 seems to ha...
by vhmth
2014-02-07T00:37:30-07:00
Forum: Users
Topic: Incorrect JPEG Version
Replies: 9
Views: 9917

Re: Incorrect JPEG Version

Results of find: /usr/local/bin/cjpeg /usr/local/bin/djpeg /usr/local/bin/jpegtran /usr/local/include/jpeglib.h /usr/local/Library/Aliases/libjpeg /usr/local/Library/Aliases/libjpeg-turbo /usr/local/Library/Formula/jpeg-turbo.rb /usr/local/Library/Formula/jpeg.rb /usr/local/Library/Formula/jpeg2ps.r...
by vhmth
2014-02-06T19:12:14-07:00
Forum: Users
Topic: Incorrect JPEG Version
Replies: 9
Views: 9917

Re: Incorrect JPEG Version

I will try to see if I can remove the other delegates, but, based on the delegates output of the make step, I only have: DELEGATES = mpeg jpeg zlib It's picking up on zlib and mpeg from system-installed libs. Is there a way to tell ImageMagick to not look in /usr/lib or /usr/local/lib? This is the o...
by vhmth
2014-02-06T16:26:02-07:00
Forum: Users
Topic: Incorrect JPEG Version
Replies: 9
Views: 9917

Re: Incorrect JPEG Version

That was my understanding of the error as well. Something is being linked incorrectly somewhere. However, I do not (to the best of my knowledge) know of libjpeg or imagemagick being installed on my computer (which is a Mac not a Windows machine). Also, if you look at the output of "make" t...
by vhmth
2014-02-06T16:07:14-07:00
Forum: Users
Topic: Incorrect JPEG Version
Replies: 9
Views: 9917

Incorrect JPEG Version

Hey guys! So I've been trying to get things working on my end for quite a bit now, but am starting to be at a loss as to what's happening. This is my current situation: * I need to build a number of delegates for MagickWand to use (libjpeg, libpng, libtiff, etc.), but am focusing on libjpeg for now ...