亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? jas_image.h

?? This code demonstrate Fast Wavelet Transform. Executable and can be run on Visual C++ platform
?? H
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
	char *ext;	/* The file name extension associated with this format. */	char *desc;	/* A brief description of the format. */	jas_image_fmtops_t ops;	/* The operations for this format. */} jas_image_fmtinfo_t;/******************************************************************************\* Image operations.\******************************************************************************//* Create an image. */jas_image_t *jas_image_create(int numcmpts,  jas_image_cmptparm_t *cmptparms, jas_clrspc_t clrspc);/* Create an "empty" image. */jas_image_t *jas_image_create0(void);/* Clone an image. */jas_image_t *jas_image_copy(jas_image_t *image);/* Deallocate any resources associated with an image. */void jas_image_destroy(jas_image_t *image);/* Get the width of the image in units of the image reference grid. */#define jas_image_width(image) \	((image)->brx_ - (image)->tlx_)/* Get the height of the image in units of the image reference grid. */#define	jas_image_height(image) \	((image)->bry_ - (image)->tly_)/* Get the x-coordinate of the top-left corner of the image bounding box  on the reference grid. */#define jas_image_tlx(image) \	((image)->tlx_)/* Get the y-coordinate of the top-left corner of the image bounding box  on the reference grid. */#define jas_image_tly(image) \	((image)->tly_)/* Get the x-coordinate of the bottom-right corner of the image bounding box  on the reference grid (plus one). */#define jas_image_brx(image) \	((image)->brx_)/* Get the y-coordinate of the bottom-right corner of the image bounding box  on the reference grid (plus one). */#define jas_image_bry(image) \	((image)->bry_)/* Get the number of image components. */#define	jas_image_numcmpts(image) \	((image)->numcmpts_)/* Get the color model used by the image. */#define	jas_image_clrspc(image) \	((image)->clrspc_)/* Set the color model for an image. */#define jas_image_setclrspc(image, clrspc) \	((image)->clrspc_ = (clrspc))#define jas_image_cmpttype(image, cmptno) \	((image)->cmpts_[(cmptno)]->type_)#define jas_image_setcmpttype(image, cmptno, type) \	((image)->cmpts_[(cmptno)]->type_ = (type))/* Get the width of a component. */#define	jas_image_cmptwidth(image, cmptno) \	((image)->cmpts_[cmptno]->width_)/* Get the height of a component. */#define	jas_image_cmptheight(image, cmptno) \	((image)->cmpts_[cmptno]->height_)/* Get the signedness of the sample data for a component. */#define	jas_image_cmptsgnd(image, cmptno) \	((image)->cmpts_[cmptno]->sgnd_)/* Get the precision of the sample data for a component. */#define	jas_image_cmptprec(image, cmptno) \	((image)->cmpts_[cmptno]->prec_)/* Get the horizontal subsampling factor for a component. */#define	jas_image_cmpthstep(image, cmptno) \	((image)->cmpts_[cmptno]->hstep_)/* Get the vertical subsampling factor for a component. */#define	jas_image_cmptvstep(image, cmptno) \	((image)->cmpts_[cmptno]->vstep_)/* Get the x-coordinate of the top-left corner of a component. */#define	jas_image_cmpttlx(image, cmptno) \	((image)->cmpts_[cmptno]->tlx_)/* Get the y-coordinate of the top-left corner of a component. */#define	jas_image_cmpttly(image, cmptno) \	((image)->cmpts_[cmptno]->tly_)/* Get the x-coordinate of the bottom-right corner of a component  (plus "one"). */#define	jas_image_cmptbrx(image, cmptno) \	((image)->cmpts_[cmptno]->tlx_ + (image)->cmpts_[cmptno]->width_ * \	  (image)->cmpts_[cmptno]->hstep_)/* Get the y-coordinate of the bottom-right corner of a component  (plus "one"). */#define	jas_image_cmptbry(image, cmptno) \	((image)->cmpts_[cmptno]->tly_ + (image)->cmpts_[cmptno]->height_ * \	  (image)->cmpts_[cmptno]->vstep_)/* Get the raw size of an image (i.e., the nominal size of the image without  any compression. */uint_fast32_t jas_image_rawsize(jas_image_t *image);/* Create an image from a stream in some specified format. */jas_image_t *jas_image_decode(jas_stream_t *in, int fmt, char *optstr);/* Write an image to a stream in a specified format. */int jas_image_encode(jas_image_t *image, jas_stream_t *out, int fmt,  char *optstr);/* Read a rectangular region of an image component. *//* The position and size of the rectangular region to be read is specifiedrelative to the component's coordinate system. */int jas_image_readcmpt(jas_image_t *image, int cmptno,  jas_image_coord_t x, jas_image_coord_t y, jas_image_coord_t width, jas_image_coord_t height,  jas_matrix_t *data);/* Write a rectangular region of an image component. */int jas_image_writecmpt(jas_image_t *image, int cmptno,  jas_image_coord_t x, jas_image_coord_t y, jas_image_coord_t width, jas_image_coord_t height,  jas_matrix_t *data);/* Delete a component from an image. */void jas_image_delcmpt(jas_image_t *image, int cmptno);/* Add a component to an image. */int jas_image_addcmpt(jas_image_t *image, int cmptno,  jas_image_cmptparm_t *cmptparm);/* Copy a component from one image to another. */int jas_image_copycmpt(jas_image_t *dstimage, int dstcmptno,  jas_image_t *srcimage, int srccmptno);#define	JAS_IMAGE_CDT_GETSGND(dtype) (((dtype) >> 7) & 1)#define	JAS_IMAGE_CDT_SETSGND(dtype) (((dtype) & 1) << 7)#define	JAS_IMAGE_CDT_GETPREC(dtype) ((dtype) & 0x7f)#define	JAS_IMAGE_CDT_SETPREC(dtype) ((dtype) & 0x7f)#define	jas_image_cmptdtype(image, cmptno) \	(JAS_IMAGE_CDT_SETSGND((image)->cmpts_[cmptno]->sgnd_) | JAS_IMAGE_CDT_SETPREC((image)->cmpts_[cmptno]->prec_))int jas_image_depalettize(jas_image_t *image, int cmptno, int numlutents,  int_fast32_t *lutents, int dtype, int newcmptno);int jas_image_readcmptsample(jas_image_t *image, int cmptno, int x, int y);void jas_image_writecmptsample(jas_image_t *image, int cmptno, int x, int y,  int_fast32_t v);int jas_image_getcmptbytype(jas_image_t *image, int ctype);/******************************************************************************\* Image format-related operations.\******************************************************************************//* Clear the table of image formats. */void jas_image_clearfmts(void);/* Add entry to table of image formats. */int jas_image_addfmt(int id, char *name, char *ext, char *desc,  jas_image_fmtops_t *ops);/* Get the ID for the image format with the specified name. */int jas_image_strtofmt(char *s);/* Get the name of the image format with the specified ID. */char *jas_image_fmttostr(int fmt);/* Lookup image format information by the format ID. */jas_image_fmtinfo_t *jas_image_lookupfmtbyid(int id);/* Lookup image format information by the format name. */jas_image_fmtinfo_t *jas_image_lookupfmtbyname(const char *name);/* Guess the format of an image file based on its name. */int jas_image_fmtfromname(char *filename);/* Get the format of image data in a stream. */int jas_image_getfmt(jas_stream_t *in);#define	jas_image_cmprof(image)	((image)->cmprof_)int jas_image_ishomosamp(jas_image_t *image);int jas_image_sampcmpt(jas_image_t *image, int cmptno, int newcmptno,  jas_image_coord_t ho, jas_image_coord_t vo, jas_image_coord_t hs,  jas_image_coord_t vs, int sgnd, int prec);int jas_image_writecmpt2(jas_image_t *image, int cmptno, jas_image_coord_t x,  jas_image_coord_t y, jas_image_coord_t width, jas_image_coord_t height,  long *buf);int jas_image_readcmpt2(jas_image_t *image, int cmptno, jas_image_coord_t x,  jas_image_coord_t y, jas_image_coord_t width, jas_image_coord_t height,  long *buf);#define	jas_image_setcmprof(image, cmprof) ((image)->cmprof_ = cmprof)jas_image_t *jas_image_chclrspc(jas_image_t *image, jas_cmprof_t *outprof,  int intent);void jas_image_dump(jas_image_t *image, FILE *out);/******************************************************************************\* Image format-dependent operations.\******************************************************************************/#if !defined(EXCLUDE_JPG_SUPPORT)/* Format-dependent operations for JPG support. */jas_image_t *jpg_decode(jas_stream_t *in, char *optstr);int jpg_encode(jas_image_t *image, jas_stream_t *out, char *optstr);int jpg_validate(jas_stream_t *in);#endif#if !defined(EXCLUDE_MIF_SUPPORT)/* Format-dependent operations for MIF support. */jas_image_t *mif_decode(jas_stream_t *in, char *optstr);int mif_encode(jas_image_t *image, jas_stream_t *out, char *optstr);int mif_validate(jas_stream_t *in);#endif#if !defined(EXCLUDE_PNM_SUPPORT)/* Format-dependent operations for PNM support. */jas_image_t *pnm_decode(jas_stream_t *in, char *optstr);int pnm_encode(jas_image_t *image, jas_stream_t *out, char *optstr);int pnm_validate(jas_stream_t *in);#endif#if !defined(EXCLUDE_RAS_SUPPORT)/* Format-dependent operations for Sun Rasterfile support. */jas_image_t *ras_decode(jas_stream_t *in, char *optstr);int ras_encode(jas_image_t *image, jas_stream_t *out, char *optstr);int ras_validate(jas_stream_t *in);#endif#if !defined(EXCLUDE_BMP_SUPPORT)/* Format-dependent operations for BMP support. */jas_image_t *bmp_decode(jas_stream_t *in, char *optstr);int bmp_encode(jas_image_t *image, jas_stream_t *out, char *optstr);int bmp_validate(jas_stream_t *in);#endif#if !defined(EXCLUDE_JP2_SUPPORT)/* Format-dependent operations for JP2 support. */jas_image_t *jp2_decode(jas_stream_t *in, char *optstr);int jp2_encode(jas_image_t *image, jas_stream_t *out, char *optstr);int jp2_validate(jas_stream_t *in);#endif#if !defined(EXCLUDE_JPC_SUPPORT)/* Format-dependent operations for JPEG-2000 code stream support. */jas_image_t *jpc_decode(jas_stream_t *in, char *optstr);int jpc_encode(jas_image_t *image, jas_stream_t *out, char *optstr);int jpc_validate(jas_stream_t *in);#endif#if !defined(EXCLUDE_PGX_SUPPORT)/* Format-dependent operations for PGX support. */jas_image_t *pgx_decode(jas_stream_t *in, char *optstr);int pgx_encode(jas_image_t *image, jas_stream_t *out, char *optstr);int pgx_validate(jas_stream_t *in);#endif#ifdef __cplusplus}#endif#endif

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
奇米精品一区二区三区在线观看| 成人国产精品免费观看动漫| 香蕉影视欧美成人| 亚洲精品国产一区二区三区四区在线 | 伦理电影国产精品| 日韩av成人高清| 日韩精彩视频在线观看| 日本亚洲视频在线| 蜜臀久久99精品久久久久宅男| 男女男精品网站| 精品亚洲免费视频| 国产精品综合在线视频| 国模冰冰炮一区二区| 国产精品综合av一区二区国产馆| 国产一区二区免费看| 国产成人精品三级麻豆| 波多野结衣91| 色av综合在线| 欧美三片在线视频观看 | 欧美国产97人人爽人人喊| 欧美经典三级视频一区二区三区| 国产精品护士白丝一区av| 亚洲免费色视频| 午夜精品aaa| 国产一区二区在线看| 丁香激情综合五月| 色婷婷久久久亚洲一区二区三区| 欧美色精品在线视频| 欧美一二三在线| 久久久91精品国产一区二区三区| 国产精品久久久久久久久久久免费看 | 国产精品女同一区二区三区| 亚洲视频 欧洲视频| 亚洲国产精品麻豆| 美女脱光内衣内裤视频久久网站| 国产福利91精品一区二区三区| 日韩欧美久久久| 亚洲伊人色欲综合网| 日韩免费性生活视频播放| 99久久精品免费看| 欧美日韩精品免费观看视频| 欧美日韩亚州综合| 成人综合婷婷国产精品久久蜜臀| 亚洲成a人在线观看| 国产精品国产自产拍在线| 日韩一区二区在线看| 欧美久久久久久蜜桃| 欧美年轻男男videosbes| 欧美日韩精品综合在线| 欧美久久久一区| 在线不卡一区二区| 欧美日韩国产综合一区二区三区 | 久久欧美一区二区| 久久亚洲春色中文字幕久久久| 精品盗摄一区二区三区| 久久众筹精品私拍模特| 久久精品日产第一区二区三区高清版| 久久久久久久久97黄色工厂| 欧美高清一级片在线观看| 国产精品麻豆一区二区| 亚洲精品免费在线观看| 午夜精品视频一区| 国产在线麻豆精品观看| eeuss影院一区二区三区| 色素色在线综合| 欧美大片在线观看一区| 国产欧美一区二区在线| 亚洲欧美一区二区不卡| 亚洲6080在线| 国产精品自拍在线| 91亚洲国产成人精品一区二三| 欧美性猛交xxxx黑人交| 精品成人一区二区| 一区二区在线电影| 久久激情五月激情| 不卡欧美aaaaa| 91精品国产一区二区三区香蕉| 国产夜色精品一区二区av| 亚洲精品国产品国语在线app| 天天色 色综合| 国产福利一区在线| 欧美最猛黑人xxxxx猛交| 日韩欧美一区电影| 中文字幕一区二区三区在线观看| 亚洲国产美女搞黄色| 国产精品综合久久| 欧美伦理视频网站| 中文文精品字幕一区二区| 亚洲777理论| 99在线视频精品| 日韩欧美国产一区二区三区| 亚洲另类中文字| 国产一区啦啦啦在线观看| 欧美揉bbbbb揉bbbbb| 欧美国产日韩精品免费观看| 亚洲第一久久影院| 9久草视频在线视频精品| 精品国精品国产| 亚洲一二三四区不卡| 不卡免费追剧大全电视剧网站| 91精品国产高清一区二区三区蜜臀| 国产精品色哟哟| 奇米精品一区二区三区在线观看| 91在线丨porny丨国产| 26uuu精品一区二区| 五月婷婷综合激情| 色综合视频在线观看| 国产欧美一区视频| 九九在线精品视频| 欧美午夜精品一区| 亚洲天堂网中文字| 国产suv一区二区三区88区| 日韩欧美国产成人一区二区| 亚洲国产人成综合网站| 色嗨嗨av一区二区三区| 国产精品美女久久久久aⅴ| 国产综合久久久久久鬼色| 欧美日韩不卡一区| 亚洲高清在线视频| 91电影在线观看| 亚洲欧美综合色| 成人精品免费看| 中文字幕乱码一区二区免费| 国产一区二区三区黄视频| 欧美成人vps| 五月婷婷综合激情| 91麻豆精品91久久久久同性| 亚洲午夜一区二区| 欧美性大战xxxxx久久久| 一区二区三区影院| 91福利在线导航| 一区二区视频免费在线观看| 91小视频免费观看| 亚洲男人的天堂网| 欧美制服丝袜第一页| 一区二区在线观看不卡| 在线观看亚洲一区| 午夜影院久久久| 51精品国自产在线| 蜜臀精品久久久久久蜜臀| 欧美一区二区三区在线| 免费观看30秒视频久久| 日韩免费高清av| 久久av中文字幕片| 久久精品视频免费观看| 不卡视频一二三四| 伊人色综合久久天天| 欧美日本精品一区二区三区| 日本中文字幕不卡| 久久夜色精品一区| 懂色av中文字幕一区二区三区| 国产精品久久久久久久久晋中 | 制服丝袜在线91| 免费在线一区观看| 久久女同性恋中文字幕| 成人国产在线观看| 一级做a爱片久久| 欧美美女激情18p| 国产乱码精品1区2区3区| 国产亚洲一本大道中文在线| 成人黄页毛片网站| 一片黄亚洲嫩模| 日韩欧美你懂的| 成人av资源网站| 亚洲图片欧美色图| 精品电影一区二区三区| 99精品久久免费看蜜臀剧情介绍| 亚洲一区视频在线| 久久综合狠狠综合久久综合88 | 日韩av高清在线观看| 久久这里只有精品首页| av亚洲精华国产精华精华| 亚洲在线成人精品| 26uuu亚洲| 91成人国产精品| 久久99久久久欧美国产| 中文字幕中文乱码欧美一区二区| 欧美专区亚洲专区| 国产精选一区二区三区| 亚洲一二三四久久| 久久久久久久久99精品| 在线观看av一区| 国产酒店精品激情| 日日夜夜精品免费视频| 久久久影视传媒| 欧美三级三级三级爽爽爽| 国产精品77777| 亚洲成人综合视频| 国产精品美日韩| 日韩区在线观看| 91美女视频网站| 国产美女精品人人做人人爽| 亚洲成av人片一区二区三区| 国产午夜精品久久| 666欧美在线视频| 欧亚洲嫩模精品一区三区| 国产成人精品1024| 麻豆91精品视频| 亚洲国产精品精华液网站| 中文字幕av不卡|