当前位置:  开发笔记 > 编程语言 > 正文

如何在Linux上读取C++中的JPEG和PNG像素?

如何解决《如何在Linux上读取C++中的JPEG和PNG像素?》经验,为你挑选了3个好方法。

我正在做一些图像处理,我想单独读取JPEG和PNG图像中的每个像素值.

在我的部署方案中,使用第三方库(因为我在目标计算机上限制访问)会很尴尬,但我假设没有用于读取JPEG/PNG的标准C或C++库...

所以,如果你知道一种使用图书馆的方法那么好,如果没有,那么仍然欢迎答案!



1> Nils Pipenbr..:

C标准中没有标准库来读取文件格式.

但是,大多数程序,尤其是Linux平台上的程序使用相同的库来解码图像格式:

对于jpeg它是libjpeg,对于png它的libpng.

libs已经安装的可能性非常高.

http://www.libpng.org

http://www.ijg.org



2> Peter Parker..:

这是我从10年前的源代码(使用libjpeg)中挖掘的一个小例程:

#include 

int loadJpg(const char* Name) {
  unsigned char a, r, g, b;
  int width, height;
  struct jpeg_decompress_struct cinfo;
  struct jpeg_error_mgr jerr;

  FILE * infile;        /* source file */
  JSAMPARRAY pJpegBuffer;       /* Output row buffer */
  int row_stride;       /* physical row width in output buffer */
  if ((infile = fopen(Name, "rb")) == NULL) {
    fprintf(stderr, "can't open %s\n", Name);
    return 0;
  }
  cinfo.err = jpeg_std_error(&jerr);
  jpeg_create_decompress(&cinfo);
  jpeg_stdio_src(&cinfo, infile);
  (void) jpeg_read_header(&cinfo, TRUE);
  (void) jpeg_start_decompress(&cinfo);
  width = cinfo.output_width;
  height = cinfo.output_height;

  unsigned char * pDummy = new unsigned char [width*height*4];
  unsigned char * pTest = pDummy;
  if (!pDummy) {
    printf("NO MEM FOR JPEG CONVERT!\n");
    return 0;
  }
  row_stride = width * cinfo.output_components;
  pJpegBuffer = (*cinfo.mem->alloc_sarray)
    ((j_common_ptr) &cinfo, JPOOL_IMAGE, row_stride, 1);

  while (cinfo.output_scanline < cinfo.output_height) {
    (void) jpeg_read_scanlines(&cinfo, pJpegBuffer, 1);
    for (int x = 0; x < width; x++) {
      a = 0; // alpha value is not supported on jpg
      r = pJpegBuffer[0][cinfo.output_components * x];
      if (cinfo.output_components > 2) {
        g = pJpegBuffer[0][cinfo.output_components * x + 1];
        b = pJpegBuffer[0][cinfo.output_components * x + 2];
      } else {
        g = r;
        b = r;
      }
      *(pDummy++) = b;
      *(pDummy++) = g;
      *(pDummy++) = r;
      *(pDummy++) = a;
    }
  }
  fclose(infile);
  (void) jpeg_finish_decompress(&cinfo);
  jpeg_destroy_decompress(&cinfo);

  BMap = (int*)pTest; 
  Height = height;
  Width = width;
  Depth = 32;
}



3> rlbond..:

对于jpeg,已经有一个名为libjpeg的库,并且有png的libpng.好消息是它们可以直接编译,因此目标机器不需要dll文件或任何东西.坏消息是他们在C :(

此外,甚至不要考虑尝试自己阅读 文件.如果您想要一种易于阅读的格式,请改用PPM.


他们在C中的坏消息怎么样?在C++中使用C库比在Perl,Python,Java或C#中使用C库容易得多.并且比尝试使用C++中的任何一个容易得多.
推荐阅读
360691894_8a5c48
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有