`
ehuangmy
  • 浏览: 17345 次
  • 来自: ...
社区版块
存档分类
最新评论

no decode delegate for this image format

阅读更多

I spent two days working on this, and finally got it working! For others that are having trouble getting the jpeg library installed on IM, here's what I did:

1. download and install jpegsrc.v6b.tar.gz. put it into some directory, cd into that directory, do the tar thing:

Code: Select all
tar xvfz jp*


2. I got valuable info from this page: http://www.noah.org/wiki/Jpegsrc_64
you have to tell jpeg-6b where you want to put the libraries and also copy some files because I'm using an x86_64 machine. Here are the commands I used:
(I'm installing into a directory called /root/jpeg-6b)

Code: Select all
cp /usr/lib/rpm/config.guess /root/jp*/
cp /usr/lib/rpm/config.sub /root/jp*/
./configure --enable-shared
make libdir=/usr/lib64
make libdir=/usr/lib64 install


so that takes care of the jpeg libraries. Actually, I had them installed already, so none of this was necessary.
3. What is necessary is that I had to tell IM where the libraries are located: /usr/lib64. So here's how I configured and compiled IM:

Code: Select all
./configure --enable-shared=yes --x-libraries=/usr/lib64 --without-perl


I don't know whether the --without-perl option is necessary, but I saw it on a site someplace so I thought I might use it.

Code: Select all
make
make install


Then cd into the utilities folder to get access to the convert command, and test it. It worked for me.

Good luck everyone,

分享到:
评论

相关推荐

    delphi 2010升级到xe8后,decodestring汉字出现:No mapping for the.mht

    delphi 2010升级到xe8后,decodestring汉字出现:No mapping for the.mht

    Decode For Mac_v1.1.20

    《Decode for Mac_v1.1.20:从界面到代码的高效开发工具》 在IT行业中,开发软件是推动技术创新的重要驱动力,而Decode for Mac正是这样一款专为MacOS用户设计的强大开发工具。这款v1.1.20版本的软件,以其独特的...

    H264Decode-for ce

    《H264Decode技术详解》 在当今的多媒体领域,视频编码技术占据了至关重要的地位,其中H264(也称为AVC,Advanced Video Coding)是应用最为广泛的一种编码标准。本文将深入探讨H264解码过程,帮助读者理解其背后的...

    decode image.rar_cryptography_decode

    "decode image.rar_cryptography_decode"这个标题暗示了我们正在探讨一个与图像解码和密码学相关的主题,特别是关于如何对图像进行解码的算法。描述中的"Decode image Algorithmes"进一步确认了我们将深入研究用于...

    关于decode函数的使用

    ### 关于decode函数的使用详解 #### 函数概述 `decode()`函数在SQL语言中是一种常用的条件函数,它可以根据指定的表达式返回不同的值。这种功能对于数据转换、分类统计等场景非常有用。 #### 主要作用 `decode()`...

    关于oracle decode函数的用法

    Oracle的DECODE函数是一种条件表达式,用于在SQL语句中执行类似于IF...THEN...ELSE逻辑判断的功能。它根据一个指定的表达式的值,与一系列的条件进行比较,如果匹配到某个条件,则返回对应的值;如果没有匹配任何...

    picture code and decode.zip_Image Encryption_图像加密_混沌图像代码_超混沌 加密_

    超混沌图像加密 编码译码代码 黑白图像 根据灰度做的

    decode函数.docx

    Decode 函数详解 Decode 函数是一个强大的 Oracle 函数,用于根据条件返回不同的值。它的语法结构为 `decode(条件,值 1,返回值 1,值 2,返回值 2,...值 n,返回值 n,缺省值)`。decode 函数的含义是,如果条件等于值 1...

    chrome错误提示页面

    chrome错误提示页面

    react-native-qr-decode-image-camera:解码来自图库和摄影机的本机React

    React本机qr解码图像相机yarn add react-native-qr-decode-image-cameraornpm install react-native-qr-decode-image-camerarunnpm install安装React Native相机并给予必要的许可then runcd iospod install ...

    hw_decode_linuxffmpeg_hw_decode_linuxffmpegmp4_vaapi硬件解码_源码

    编译hw_decode.c #gcc -o hw_decode hw_decode.c -I/.../include -L/.../lib -lavformat -lavfilter -lavcodec -lswscale -lavutil -lswresample -lpthread -lm -lz -lX11 -lva -lvdpau -lva-drm -lva-x114....

    Oracle中Decode()函数的有关用法

    ### Oracle中Decode()函数的有关用法 #### 一、Decode()函数简介 在Oracle数据库中,`DECODE()`函数是一种非常实用的功能,主要用于条件判断并返回特定的值。它提供了一种简单的方法来实现多分支逻辑判断,尤其是...

    EncodeDecode Demo for the DaVinci DVEVM/DVSDK 1.2 (Rev. A) (spraah0a.htm, 8 KB)

    本文将深入探讨“EncodeDecode Demo for the DaVinci DVEVM/DVSDK 1.2 (Rev. A)”这一实例,解析其在音视频处理中的应用。 首先,我们要了解DaVinci DVEVM(Digital Video Evaluation Module)和DVSDK(DaVinci ...

    BrainTools

    This utility saves images in PNG format, so watch your extensions. This utility reads images in all formats supported by the .NET framework. Note: By default, this utility outputs to stdout. Piping ...

    前端开源库-decode-tiff

    TIFF(Tagged Image File Format)是一种广泛使用的位图图像格式,尤其在专业摄影和扫描领域。然而,由于其复杂性和大文件大小,直接在前端处理TIFF图像通常是一个挑战。针对这一需求,"decode-tiff"是一个专为前端...

    xe~xe6适用urldecode for gb2312编码

    urldecode for gb2312编码 (xe1~xe6适用),网上唯一可以在xe以后版本通过的版本。不需要Tencode支持。

    python decode()和encode()函数详解

    decode和encode是他们之间的转化函数 大致的过程如下 decode encode str --> str(Unicode) --> str decode()方法语法: str.decode(encoding=‘UTF-8’,errors=‘strict’) 参数: encoding – 要使用的编码...

    JPG decode & encode - J2ME

    标题"JPG decode & encode - J2ME"涉及的知识点主要是如何在J2ME环境中对JPEG图片进行解码(decode)和编码(encode)。 1. **JPEG格式**:JPEG是一种广泛使用的有损压缩图像文件格式,适合存储照片和其他连续色调...

    DECODE

    标题中的"DECODE"可能指的是在信息技术领域中解码的过程,这通常涉及到编码与解码的概念。编码是将数据或信息转化为特定格式以便传输、存储或处理,而解码则是相反的过程,它将编码后的信息还原成原始形式。在计算机...

Global site tag (gtag.js) - Google Analytics