⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jpeg.h

📁 Swfdec still is development software, but has also followed a rigid no-crashes-allowed policy. I b
💻 H
字号:
#ifndef _JPEG_DECODER_H_#define _JPEG_DECODER_H_typedef struct _JpegDecoder JpegDecoder;JpegDecoder *jpeg_decoder_new(void);void jpeg_decoder_free(JpegDecoder *dec);int jpeg_decoder_addbits(JpegDecoder *dec, unsigned char *data, unsigned int len);int jpeg_decoder_parse(JpegDecoder *dec);int jpeg_decoder_get_image_size(JpegDecoder *dec, int *width, int *height);int jpeg_decoder_get_component_size(JpegDecoder *dec, int id,	int *width, int *height);int jpeg_decoder_get_component_subsampling(JpegDecoder *dec, int id,	int *h_subsample, int *v_subsample);int jpeg_decoder_get_component_ptr(JpegDecoder *dec, int id,	const unsigned char **image, int *rowstride);unsigned char *jpeg_decoder_get_argb_image (JpegDecoder *dec);#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -