ChinaUnix.net
相关文章推荐:

jpeg库移植出错

/usr/lib/dld.sl:can't find path for shared library:libfl.sl /usr/lib/dld.sl:no such file or dir 请教各位DX!

by 估计没错 - HP-UX - 2003-07-10 22:31:22 阅读(1222) 回复(1)

相关讨论

[root@host jpeg-6b]# ./configure --prefix=/usr/local/jpeg --enable-shared --enable-static checking for gcc... gcc checking whether the C compiler (gcc ) works... yes checking whether the C compiler (gcc ) is a cross-compiler... no checking whether we are using GNU C... yes checking how to run the C preprocessor... gcc -E checking for function prototypes... yes checking for stddef.h... yes checki...

by powerv_cu - 服务器应用 - 2006-09-08 23:54:55 阅读(1978) 回复(4)

请教: 系统环境:REDHAT9 编译参数: ./configure --enable-static --enable-shared --prefix=/usr/local/jpeg-6b 安装jpeg-6b出错: [code] [root@localhost jpeg-6b]# make install /usr/bin/install -c -m 644 jconfig.h /usr/local/jpeg-6b/include/jconfig.h /usr/bin/install: cannot create regular file `/usr/local/jpeg-6b/include/jconfig.h': No such file or directory make: *** [install-headers] Error 1[/code]

by qmailer - 系统管理 - 2006-07-21 09:44:22 阅读(842) 回复(3)

Linux下,如何安装zlib,gd,png,jpeg? 我从这些的官方网站下载了,也安里面的README文档做,可总是出错,谁有正确的安装方法啊?

by 飞豹游侠 - 服务器应用 - 2005-11-11 14:44:18 阅读(3741) 回复(6)

我用的是AMD X86 64位的机器.系统为REDHAT的FC4,下载了jpegsrc.v6b.tar.gz后,使用./configure --prefix=/usr/local/php/modules/jpeg6 --enable-shared --enable-static 编译,出现以下错误 checking host system type... Invalid configuration `x86_64-unknown-linux-gnu': machine `x86_64-unknown' not recognized 晕呀,结果编译好GD后,还是不支持 jpeg

by 宇风 - 服务器应用 - 2006-09-04 21:48:38 阅读(1563) 回复(3)

各位大侠帮忙看看是哪里出错了! ports安装和按照下边步骤安装,均不支持jpeg格式 安装 libjpeg tar zxvf jpegsrc.v6b.tar.gz cd jpeg-6b ./configure --enable-static --enable-shared make make test make install 安装 libpng tar zxvf libpng-1.2.8-config.tar.gz cd libpng-1.2.8-config ./configure make make install 安装 zlib tar zxvf zlib-1.2.2.tar.gz cd zlib-1.2.2 ./configure make make install 安装 freetyp...

by handman - 服务器应用 - 2007-09-26 16:44:52 阅读(4733) 回复(4)

目前我通过PORTS 安装的GD只支持GIF与PNG。。。 这是我的 php 配置: [code]Configure Command './configure' '--enable-versioning' '--enable-memory-limit' '--with-layout=GNU' '--disable-all' '-with-pcre-regex=yes' '--enable-xml' '--with-expat-dir=/usr/local' '--with-zlib-dir=/usr' '--with-pear' '--with-mysql=/usr/local' '--with-png' '--with-jpeg' '--with-zlib' '--with-gd' '--with-regex=php' '--disabl...

by ndren - BSD - 2006-05-12 16:14:50 阅读(2263) 回复(12)

大家好,有那位高人, 用IJG并向小弟提供YUV420转jpeg图片的代码呀。 ------------ 如果不用IJG也行,但我写了一个IJG compress程序不行,压缩后所有图片全是空白;这几天就不能用了,提示没有这个格式,下面是我的代码: #include #include "jpeglib.h" #include JSAMPLE * image_buffer; int imageWidth=200; int imageHeight=200; int main(int argc,char **argv) { struct jpeg_compress_str...

by magicgarden - C/C++ - 2007-04-10 09:01:29 阅读(2290) 回复(0)

===> php5-gd-5.0.4_2 depends on shared library: jpeg.9 - not found ===> Verifying install for jpeg.9 in /usr/ports/graphics/jpeg ===> Vulnerability check disabled, database not found => jpegexiforient.c doesn't seem to exist in /usr/ports/distfiles/. => Attempting to fetch from http://sylvana.net/jpegcrop/. fetch: http://sylvana.net/jpegcrop/jpegexiforient.c: No address record => Attempting ...

by mao1001 - BSD - 2006-04-26 11:29:39 阅读(2378) 回复(3)

使用上面这个表简化后的内容,再到 Huffman 编码表里去查询,从而得到最后的编码。   如06对应 Huffman 表的111000,那么   69 = (4,5) --- 1111111110011001 (69=0x45=4*16+5 )   21 = (1,5) --- 11111110110   从而得到最后的结果:   111000 111001 ; 111000 101101 ; 1111111110011001 10111 ; 11111110110 00001…   使用范式 Huffman 编码表的好处就是使得出现频率高的数字小于8位,而出现频率低的数字大于...

by hunklinux - 存储文档中心 - 2008-11-13 09:55:11 阅读(2139) 回复(0)