`
coding1688
  • 浏览: 236844 次
  • 来自: 上海
社区版块
存档分类
最新评论

VC6下编译IJG库(用于读取和生成jpg格式图片文件)

 
阅读更多

VC6下编译IJG库

IJG 是什么?

IJG 是一个处理 jpeg 的 C 语言写的库,其官方站点是 http://www.ijg.org/。

 

http://www.ijg.org/ 写道
Independent JPEG Group
IJG is an informal group that writes and distributes a widely used free library for JPEG image compression. The first version was released on 7-Oct-1991.

The current version is release 8d of 15-Jan-2012. This is a stable and solid foundation for many application's JPEG support.

You can find our code and some supporting documentation in the directory files. There is a Unix format package in tar.gz archive format jpegsrc.v8d.tar.gz and a Windows format package in zip archive format jpegsr8d.zip.

To learn more about how to use JPEG, see the JPEG FAQ. If you'd like to learn about how JPEG works, start with the comp.compression FAQ.

The ISO/IEC JTC1/SC29/WG1 standards committee (also known as JPEG, together with ITU-T SG16) has their own web site. IJG is not affiliated with the ISO committee.

IJG development continues. Advanced features are being prepared for coming releases...

Version 9 of the Independent JPEG Group software is currently in development and is planned for release in January 2013. The development site for IJG JPEG 9 is at InfAI.org.

 

怎么编译 jpeg.lib ?

下载 jpegsr8d.zip 文件之后解压,打开其中的 install.txt 文件,找到文件末尾的关于 VC6 的编译指令说明,如下:

install.txt 写道

Microsoft Windows, Microsoft Visual C++ 6 Developer Studio:

We include makefiles that should work as project files in DevStudio 6.0 or
later. There is a library makefile that builds the IJG library as a static
Win32 library, and application makefiles that build the sample applications
as Win32 console applications. (Even if you only want the library, we
recommend building the applications so that you can run the self-test.)

To use:
1. Open the command prompt, change to the main directory and execute the
command line
NMAKE /f makefile.vc setup-vc6
This will move jconfig.vc to jconfig.h and makefiles to project files.
(Note that the renaming is critical!)
2. Open the workspace file jpeg.dsw, build the library project.
(If you are using DevStudio more recent than 6.0, you'll probably
get a message saying that the project files are being updated.)
3. Open the workspace file apps.dsw, build the application projects.
4. To perform the self-test, execute the command line
NMAKE /f makefile.vc test-build
5. Move the application .exe files from `app`\Release to an
appropriate location on your path.
 

D:\test\jpegsr8d\jpeg-8d>NMAKE /f makefile.vc  setup-vc6

Microsoft (R) Program Maintenance Utility   Version 6.00.8168.
Copyright (C) Microsoft Corp 1988-1998. All rights reserved.

        ren jconfig.vc jconfig.h
        ren makejdsw.vc6 jpeg.dsw
        ren makeadsw.vc6 apps.dsw
        ren makejmak.vc6 jpeg.mak
        ren makejdep.vc6 jpeg.dep
        ren makejdsp.vc6 jpeg.dsp
        ren makecmak.vc6 cjpeg.mak
        ren makecdep.vc6 cjpeg.dep
        ren makecdsp.vc6 cjpeg.dsp
        ren makedmak.vc6 djpeg.mak
        ren makeddep.vc6 djpeg.dep
        ren makeddsp.vc6 djpeg.dsp
        ren maketmak.vc6 jpegtran.mak
        ren maketdep.vc6 jpegtran.dep
        ren maketdsp.vc6 jpegtran.dsp
        ren makermak.vc6 rdjpgcom.mak
        ren makerdep.vc6 rdjpgcom.dep
        ren makerdsp.vc6 rdjpgcom.dsp
        ren makewmak.vc6 wrjpgcom.mak
        ren makewdep.vc6 wrjpgcom.dep
        ren makewdsp.vc6 wrjpgcom.dsp

D:\test\jpegsr8d\jpeg-8d>

 

 

上面的步骤会在源程序目录中生成很多 dsp 和 dsw 文件,选择其中的 jpeg.dsw 用 VC6 打开。

编译之后就会在 Release 目录生成 jpeg.lib 静态库文件。

 

怎样在 VC6 中使用 IJG 的 jpeg 库?

为了方便以后使用,可创建一个名为 libjpeg 的目录,将下列文件复制到其中:

jpeg.lib

jpeglib.h

jconfig.h

jmorecfg.h

以后在使用的时候就只需要将 libjpeg 目录复制到工程所在目录中,与 jpeg-8d 下一大堆文件无关了。

 

 

在使用时,使用到该库的 cpp 文件应加上如下内容:

extern "C" {
	#include "jpeglib.h"
}

#pragma comment(lib, "libjpeg/jpeg.lib")
 

因为那些头文件是放置在 libjpeg 目录中的,因此需要增加 附加包含路径 libjpeg,操作如下:

在菜单“工程”中选择“设置”,切到“C/C++”,将“分类”选择为“预处理器”,在“附加包含路径”中加入 libjpeg 。

 

使用时需要 将 MFC 库作为静态库使用,更改方式:

在菜单“工程”中选择“设置”,切到“常规”,就会看到 Microsoft 基础类的设置,改成“把MFC作为静态链接库”。

否则,在链接时报一大堆错误

编译连接出错信息 写道
Linking...
libcmt.lib(crt0dat.obj) : error LNK2005: _exit already defined in msvcrtd.lib(MSVCRTD.dll)
libcmt.lib(crt0dat.obj) : error LNK2005: __exit already defined in msvcrtd.lib(MSVCRTD.dll)
libcmt.lib(crt0init.obj) : error LNK2005: ___xc_z already defined in msvcrtd.lib(cinitexe.obj)
libcmt.lib(crt0init.obj) : error LNK2005: ___xc_a already defined in msvcrtd.lib(cinitexe.obj)
libcmt.lib(crt0init.obj) : error LNK2005: ___xi_z already defined in msvcrtd.lib(cinitexe.obj)
libcmt.lib(crt0init.obj) : error LNK2005: ___xi_a already defined in msvcrtd.lib(cinitexe.obj)
libcmt.lib(winxfltr.obj) : error LNK2005: __XcptFilter already defined in msvcrtd.lib(MSVCRTD.dll)
msvcrtd.lib(MSVCRTD.dll) : error LNK2005: __setmbcp already defined in libcmt.lib(mbctype.obj)
LINK : warning LNK4098: defaultlib "msvcrtd.lib" conflicts with use of other libs; use /NODEFAULTLIB:library
msvcrtd.lib(cinitexe.obj) : warning LNK4098: defaultlib "libcmt.lib" conflicts with use of other libs; use /NODEFAULTLIB:library
libcmt.lib(crt0.obj) : error LNK2001: unresolved external symbol _main
Debug/TestClipboard.exe : fatal error LNK1120: 1 unresolved externals
执行 link.exe 时出错.

 

参考资料

参考资料1:vc++6.0环境下编译使用IJG

http://hi.baidu.com/zhi_qiu_yi_ye/blog/item/7d367f27704aa75f9922ed05.html

参考资料2:利用IJG JPEG Library压缩图像为jpg格式

http://www.vckbase.com/document/viewdoc/?id=1790

 

 

 

 

 

 

1
1
分享到:
评论

相关推荐

    vc 开发的图片编辑程序

    在本文中,我们将深入探讨如何使用Microsoft Visual C++(简称VC)进行图像编辑程序的开发,特别是基于IJG库处理JPEG和BMP格式的图片。IJG库,全称为Independent JPEG Group Library,是一个广泛使用的开源库,专门...

    jpeg6d编译后库

    压缩包中的"jpeg-6d"文件可能包含了JPEG6D库的所有组件,如头文件(.h)、库文件(.lib或.dll)、示例代码以及可能的文档。为了使用这个库,你需要将这些文件放在正确的位置,并在项目设置中指定库路径。 总结来说...

    VCJPEG文件读写

    在VC6.0环境下,开发一个能够读取和写入JPEG文件的应用程序是一项常见的任务,尤其是在处理图像数据或创建图像编辑软件时。本教程将详细解释如何使用VC++ 6.0实现JPEG文件的读写功能,并提供了一个名为"ShowJPEG"的...

    jpeg(ijg).rar_IJG_c++ jpeg库_ijg jpeg_jpeg库

    IJG JPEG库是一个著名的开源图像处理库,专用于JPEG(Joint Photographic Experts Group)格式的编解码。这个库由Independent JPEG Group开发,因此得名IJG,它以C++语言编写,为开发者提供了高效、可靠的JPEG编码和...

    IJG JPEG源码

    - IJG JPEG库通常提供命令行工具`cjpeg`和`djpeg`,分别用于编码和解码JPEG图像。 - 用户可以通过配置选项自定义编译,例如选择编解码模式、压缩级别、是否保存原始未量化的DCT系数等。 6. **优化与性能**: - ...

    VC处理JPG图像实例

    1. **引入libjpeg库**:下载并编译libjpeg库,将其头文件和库文件添加到你的VC++项目中。这通常包括`jpeglib.h`、`jerror.h`等头文件和对应的.lib或.dll文件。 2. **读取JPG图像**:利用libjpeg库的API,如`jpeg_...

    jpeg.rar_IJG_ijg jpeg_ijg-ipp_linux_jpegsr6b.zip

    它还指出,该库是针对不同的系统和编译工具优化的,这意味着无论是Windows、Linux还是其他平台,开发者都能找到适应的编译配置,使得在各种环境下构建和使用这个库变得可能。 标签“ijg”,“ijg_jpeg”,“ijg-ipp...

    JPG格式图像放缩

    在图像处理领域,JPG(也写作JPEG)是一种广泛使用的有损压缩图像文件格式,尤其适合于存储照片和其他高色彩深度的图像。本程序聚焦于JPG格式图像的放缩操作,采用C++编程语言,并且已经通过了VC(Visual C++)...

    jpeg8d 编译后库

    在 VC++ 中使用 JPEG8d 库,首先需要将库的头文件(如 "jpeglib.h" 和 "jerror.h")和编译好的库文件(通常是 .lib 或 .dll 文件)添加到项目的包含目录和链接器设置中。接着,开发者可以使用库提供的函数来执行 ...

    vc6.0 环境下JPEG压缩算法实现代码 集合

    在VC6.0环境中,你需要利用C++编程语言和可能的第三方库(如IJG(Independent JPEG Group)的库)来实现这些步骤。你还需要熟悉位操作、内存管理以及如何处理二进制文件流。对于初学者来说,理解每个步骤并将其转化...

    VC 6.0下显示JPEG图像,供参考.rar

    下载并编译libjpeg库后,将其包含到你的项目中,确保添加相应的头文件和库文件路径。 1. **设置项目配置**: 在VC 6.0中,打开项目属性,配置包含目录以包含libjpeg库的头文件路径,同时配置链接器的输入选项,将...

    利用IJG JPEG Library压缩图像为.zip

    IJG JPEG Library是一款广泛使用的开源JPEG编码和解码库,由Independent JPEG Group开发。这个库提供了C语言接口,使得开发者可以方便地在自己的应用程序中实现JPEG图像的压缩和解压缩功能。在本主题中,我们将深入...

    wince 下evc平台解码jpg 、jpeg图片 源代码

    2. 将编译后的库文件(通常是.lib或.dll)与你的项目链接。 3. 在EVC工程中,包含libjpeg库所需的头文件,例如"jpeglib.h"和"jerror.h"。 4. 实现JPEG解码函数,调用libjpeg库提供的API,如jpeg_create_decompress()...

    jpeg.rar_jpeg delphi

    6. 测试和调试,确保在VC环境下能正确读取和显示JPEG图片。 总之,要在VC中不使用DLL显示JPEG图片,开发者需要对两种编程环境有深入理解,同时熟悉C++和Delphi之间的语法差异,以及如何处理跨语言的库集成。通过这...

    IJG JPEG使用说明(部分)

    - 可以与其他文件格式集成使用,如在LIBTIFF库中用于支持TIFF格式中的JPEG压缩数据。 #### 二、基本用法 **压缩操作** - **初始化**: 分配JPEG对象并初始化。 - **设置目的**: 指定压缩数据的目的地,比如文件。 ...

    jpeglib wince arm mips 处理jpeg压缩格式的图片

    4. 编译库:运行构建脚本,这将生成适用于目标平台的静态库(.a文件)或动态库(.dll文件)。 5. 测试与应用:编译完成后,你可以编写示例程序来测试JPEGlib的功能,如读取、解码、显示或编码JPEG图像。将编译好的...

    WinCE下利用JPEG库对图像进行解码

    IJG JPEG库是一个开源、免费的库,用于读取、写入和处理JPEG格式的图像。这个库提供了一套完整的API,可以实现JPEG编码和解码功能。在WinCE环境中,我们可以使用EVC来编译和链接这个库,以便在我们的应用程序中使用...

    VC编写JPEG的显示

    在VC++环境中编写程序来显示JPEG图像涉及到许多关键知识点,包括图像文件格式的理解、图形库的使用、内存管理和用户界面设计。以下是对这些知识点的详细解释: 首先,JPEG(Joint Photographic Experts Group)是一...

    libJPEG的动态链接库

    libJPEG的DLL版本可以让开发者在不包含完整库源代码的情况下,只需链接所需的库文件,即可在程序中调用libJPEG的功能。 **4. 创建DLL的过程** 创建libJPEG的DLL通常涉及以下步骤: - 下载libJPEG源代码,例如从官方...

Global site tag (gtag.js) - Google Analytics