JPEGがRGB形式かCMYK形式かを確認するにはどうすればよいですか?

StackOverflow https://stackoverflow.com/questions/4487739

  •  11-10-2019
  •  | 
  •  

質問

C ++、GDI+、Windowsを使用しています。 JPEGがRGBかCMYKかを確認する方法は?

役に立ちましたか?

解決

IJG libjpegライブラリを使用する場合、JPEGファイルを開き、ヘッダーを読んで、グレースケール(モノクロ)、RGB、またはCMYKかどうかを確認できます。 (実際、いくつかの無料のJPEGライブラリがありますが、IJG libjpegはおそらく最も一般的に使用されています。)libjpegソースは次のとおりです。

http://www.ijg.org/files/jpegsrc.v8c.tar.gz

ヘッダーを読む方法のおおよその例は、次のようなものです。

struct jpeg_decompress_struct dinfo;
FILE* file = fopen(fname, "r");

/* Step 1: allocate and initialize JPEG decompression object */
jpeg_create_decompress(&dinfo);

/* Step 2: specify data source (eg, a file) */
jpeg_stdio_src(&dinfo, file);

/* Step 3: read file parameters with jpeg_read_header() */
(void) jpeg_read_header(dinfo, TRUE);

/* Step 4: set parameters for decompression
 * In this example, we don't need to change any of the 
 * defaults set by jpeg_read_header(), so we do nothing here.
 */
if (dinfo->jpeg_color_space == JCS_CMYK || dinfo->jpeg_color_space == JCS_YCCK) {
    // CMYK
} else if (dinfo->jpeg_color_space == JCS_RGB || dinfo->jpeg_color_space == JCS_YCbCr) {
    // RGB
} else if (dinfo->jpeg_color_space == JCS_GRAYSCALE) {
    // Grayscale
} else {
    ERREXIT(dinfo, JERR_CONVERSION_NOTIMPL);
    // error condition here...
}

/* You can skip the other steps involved in decompressing an image */

/* Step 8: Release JPEG decompression object */
jpeg_destroy_decompress(dinfo);
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top