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

📄 jpeg.h

📁 网络摄像头的webserver
💻 H
字号:
#ifndef _JPEG_H_#define _JPEG_H_/* $Id: jpeg.h,v 1.7 2002/09/20 09:05:30 dfx Exp $ */#include <libxml/parser.h>struct image;struct jpegbuf{	char *buf;	unsigned int bufsize;};/* Compresses an image and returns a buffer to the jpeg data. Caller must * free(jpegbuf->buf). Third arg is a pointer to an xml tree, which may * contain a <jpegqual> tag to specify the quality to use. If no tag * is found or ptr is NULL, default quality will be used. */void jpeg_compress(struct jpegbuf *, const struct image *, xmlNodePtr);#endif

⌨️ 快捷键说明

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