Search found 6 matches
- 2012-06-02T21:56:09-07:00
- Forum: Developers
- Topic: Wrong JPEG VERSION: Library is 62, caller expects 80
- Replies: 11
- Views: 47065
Re: Wrong JPEG VERSION: Library is 62, caller expects 80
HI, fmw42 and magick, Thanks a lot for all your useful information! Now I solved the problem. I am describing the solution as follows for the ImageMagickers who have the same problem. I am using Ubuntu 11.10. Currently there are two versions of JPEG, 62 and 80, on the system. Somehow it only ...
- 2012-06-01T17:24:25-07:00
- Forum: Developers
- Topic: Wrong JPEG VERSION: Library is 62, caller expects 80
- Replies: 11
- Views: 47065
Re: Wrong JPEG VERSION: Library is 62, caller expects 80
sounds like the jpeg install did not work correctly or IM cannot find it. what do you get from convert -list configure look at the line starting with DELEGATES and see if it includes jpg. My delegates look like this. DELEGATES bzlib fftw fontconfig freetype gs jpeg jng jp2 lcms2 lqr openexr pango ...
- 2012-06-01T14:24:01-07:00
- Forum: Developers
- Topic: Wrong JPEG VERSION: Library is 62, caller expects 80
- Replies: 11
- Views: 47065
Re: Wrong JPEG VERSION: Library is 62, caller expects 80
This error occurs when one of the delegate libraries include an older version of JPEG than what is currently on your system. What happens is that the delegate was built with an older version of JPEG which has different sized structures than the one that is built with ImageMagick. You might be able ...
- 2012-06-01T14:19:50-07:00
- Forum: Developers
- Topic: Wrong JPEG VERSION: Library is 62, caller expects 80
- Replies: 11
- Views: 47065
Re: Wrong JPEG VERSION: Library is 62, caller expects 80
sounds like the jpeg install did not work correctly or IM cannot find it. what do you get from convert -list configure look at the line starting with DELEGATES and see if it includes jpg. My delegates look like this. DELEGATES bzlib fftw fontconfig freetype gs jpeg jng jp2 lcms2 lqr openexr pango ...
- 2012-05-31T19:08:08-07:00
- Forum: Developers
- Topic: Wrong JPEG VERSION: Library is 62, caller expects 80
- Replies: 11
- Views: 47065
Re: Wrong JPEG VERSION: Library is 62, caller expects 80
Hi, fmw42, Thanks a lot for your information! I uninstalled all the jpeg versions (both 62 and 80), and reinstalled jpeg8 by using apt-get install libjpeg8 (on Ubuntu) The previous error (Wrong JPEG Version) disappeared. But I got new error when I call libtest.so file as follows, Magick: no decode ...
- 2012-05-31T10:29:38-07:00
- Forum: Developers
- Topic: Wrong JPEG VERSION: Library is 62, caller expects 80
- Replies: 11
- Views: 47065
Wrong JPEG VERSION: Library is 62, caller expects 80
Hi, All, I am writing a wrapper program on IM, which is then converted to libtest.so file. Another C++ server will call libtest.so dynamically. I am doing all of these on Ubuntu 11.10. When I running of calling .so function, it complains, catch exception,Wrong JPEG VERSION: Library is 62, caller ...