Welcome![Sign In][Sign Up]
Location:
Search - JPC

Search list

[Special EffectsTonyJpegLib

Description: Jpeg/Jpeg2000压缩和解压缩的示例程序,支持JPP、JPC、JPG等图像格式-Jpeg/Jpeg2000JPPJPCJPG
Platform: | Size: 757620 | Author: 吴雨 | Hits:

[Other resourcecximage599a_full

Description: 一个强大的图片转换库格式包括*.bmp *.gif *.jpg *.jpeg *.png *.ico *.tif *.tiff *.tga *.pcx *.wbmp *.wmf *.emf *.j2k *.jp2 *.jbg *.j2c *.jpc *.pgx *.pnm *.pgm *.ppm *.ras-a powerful images for conversion include *. bmp format *. gif *. jpg *. jpeg *. png *. ico *. tif *. tiff *. tga *. ai *. wbmp *. exe *. dib *. j2k jp2 participants *. *. *. j2c *. jpc *. pgx *. pnm *. pgm *. ppm ras *.
Platform: | Size: 2003628 | Author: 郑振华 | Hits:

[Other resourceJPCsource

Description: JPC: x86 PC Hardware Emulator. 牛津大学开发的一个纯JAVA的x86系统结构硬件模拟器。
Platform: | Size: 3952422 | Author: 雷田 | Hits:

[Other resourceTonyJpegLib_src

Description: 一个很好用的vc 类库,可以进行,jpg2000,到bmp的转换,也可进行bmp到JPg2000的转换,支持的格式有,jp2,j2k,jpc,bmp,pcx,jpg等-a good use of vc class library can be done, PDF, bmp conversion can also be JPg2000 bmp to the conversion, support for the format, jp2, j2k, jpc, bmp, nil, jpg, etc.
Platform: | Size: 632772 | Author: 好好好 | Hits:

[GDI-BitmapCCID-22123.ZIP

Description: 一个Delphi的类库,用了,进行,Bmp,Pcx到JP2,JPc的转换,很好用-a Delphi library, spent, conduct, PDF, Pcx to JP2, the conversion JPc good use
Platform: | Size: 1399131 | Author: 好好好 | Hits:

[ELanguagepl/0

Description: /*PL/0编译系统C版本头文件pl0.h*/ /* typedef enum { false, true } bool; */ #define norw 13 /*关键字个数*/ #define txmax 100 /*名字表容量*/ #define nmax 14 /*number的最大位数*/ #define al 10 /*符号的最大长度*/ #define amax 2047 /*地址上界*/ #define levmax 3 /*最大允许过程嵌套声明层数[0,levmax]*/ #define cxmax 200 /*最多的虚拟机代码数*/ /*符号*/ enum symbol{ nul, ident, number, plus, minus, times, slash, oddsym, eql, neq, lss, leq, gtr, geq, lparen, rparen, comma, semicolon, period, becomes, beginsym, endsym, ifsym, thensym, whilesym, writesym, readsym, dosym, callsym, constsym, varsym, procsym, }; #define symnum 32 /*名字表中的类型*/ enum object{ constant, variable, procedur, }; /*虚拟机代码*/ enum fct{ lit, opr, lod, sto, cal, inte, jmp, jpc, }; #define fctnum 8 /*虚拟机结构代码*/ struct instruction { /*454*/ enum fct f; // 虚拟机代码指令 int l; //引用层与声明层的层次差 int a; //根据f的不同而不同 }; FILE * fas; //输出名字表 FILE * fa; //输出虚拟机代码 FILE * fa1; //输出源文件及其各行对应的首地址 FILE * fa2; //输出结果 bool listswitch; //显示虚拟机代码与否 bool tableswitch; //显示名字与否 char ch; //获取字符的缓冲区,getch使用 enum symbol sym; //当前的符号 char id[al+1]; //当前ident,多出的一个字节用于存放0 int num; //当前number int cc,ll; //getch使用的计数器,cc表示当前字符(ch)的位置 int cx; //虚拟机代码指针,取值范围[0,cxmax-1] char line[81]; //读取行缓冲区 char a[al+1]; //临时符号,多出的一个字节用于存放0 struct instruction code[cxmax]; //存放虚拟机代码的数组 char word[norw][al]; //保留字 enum symbol wsym[norw]; //保留字对应的符号值 enum symbol ssym[256]; //单字符的符号值 char mnemonic[fctnum][5]; //虚拟机代码指令名称 bool declbegsys[symnum]; //表示声明开始的符号集合 bool statbegsys[symnum]; //表示语句开始的符号集合 bool facbegsys[symnum]; //表示因子开始的符号集合 //名字表结构 struct tablestruct { char name[al]; //名字 enum object kind; //类型:const,var,array or procedure int val; //数值,仅const使用 int level; //所须层,仅const不能用 int adr; //地址,仅const不能用 int size; //需要分配的数据空间,仅procedure使用 }; struct tablestruct table[txmax]; //名字表 FILE * fin; FILE * fout; char fname[al]; int err; //错误计数器 //当函数中发生fatal error时,返回-1告知调用它的函数,最终退出程序 #define getsymdo if(-1==getsym()) return -1 #define getchdo if(-1==getch()) return -1 #define testdo(a,b,c) if(-1==test(a,b,c)) return -1 #define gendo(a,b,c) if(-1==gen(a,b,c)) return -1 #define expressiondo(a,b,c) if(-1==expression(a,b,c)) return -1 #define factordo(a,b,c) if(-1==factor(a,b,c)) return -1 #define termdo(a,b,c) if(-1==term(a,b,c)) return -1 #define conditiondo(a,b,c) if(-1==condition(a,b,c)) return -1 #define statementdo(a,b,c) if(-1==statement(a,b,c)) return -1 #define constdeclarationdo(a,b,c) if(-1==constdeclaration(a,b,c)) return -1 #define vardeclarationdo(a,b,c) if(-1==vardeclaration(a,b,c)) return -1 void error(int n); int getsym(); int getch(); void init(); int gen(enum fct x,int y ,int z); int test(bool *s1,bool *s2,int n); int inset(int e,bool *s); int addset(bool *str,bool * s1,bool * s2,int n); int subset(bool *str,bool * s1,bool * s2,int n); int mulset(bool *str,bool * s1,bool * s2,int n); int block(int lev,int tx,bool * fsys); void interpret(); int factor(bool * fsys,int * ptx,int lev); int term(bool * fsys,int * ptx,int lev); int condition(bool * fsys,int * ptx,int lev); int expression(bool * fsys,int * ptx,int lev); int statement(bool * fsys,int * ptx,int lev); void listcode(int cx0); int vardeclaration(int *ptr, int lev,int *ptx); int constdeclaration(int *ptr, int lev,int *ptx); int position(char * idt,int tx); void enter(enum object k,int * ptx,int lev, int * pdx); int base(int l,int * s,int b)
Platform: | Size: 25139 | Author: xqq771084591 | Hits:

[Picture Viewercximage599a_full

Description: 一个强大的图片转换库格式包括*.bmp *.gif *.jpg *.jpeg *.png *.ico *.tif *.tiff *.tga *.pcx *.wbmp *.wmf *.emf *.j2k *.jp2 *.jbg *.j2c *.jpc *.pgx *.pnm *.pgm *.ppm *.ras-a powerful images for conversion include*. bmp format*. gif*. jpg*. jpeg*. png*. ico*. tif*. tiff*. tga*. ai*. wbmp*. exe*. dib*. j2k jp2 participants*.*.*. j2c*. jpc*. pgx*. pnm*. pgm*. ppm ras*.
Platform: | Size: 2003968 | Author: 郑振华 | Hits:

[Picture ViewerTonyJpegLib_src

Description: 一个很好用的vc 类库,可以进行,jpg2000,到bmp的转换,也可进行bmp到JPg2000的转换,支持的格式有,jp2,j2k,jpc,bmp,pcx,jpg等-a good use of vc class library can be done, PDF, bmp conversion can also be JPg2000 bmp to the conversion, support for the format, jp2, j2k, jpc, bmp, nil, jpg, etc.
Platform: | Size: 632832 | Author: 好好好 | Hits:

[GDI-BitmapCCID-22123.ZIP

Description: 一个Delphi的类库,用了,进行,Bmp,Pcx到JP2,JPc的转换,很好用-a Delphi library, spent, conduct, PDF, Pcx to JP2, the conversion JPc good use
Platform: | Size: 1398784 | Author: 好好好 | Hits:

[Special EffectsTonyJpegLib

Description: Jpeg/Jpeg2000压缩和解压缩的示例程序,支持JPP、JPC、JPG等图像格式-Jpeg/Jpeg2000JPPJPCJPG
Platform: | Size: 757760 | Author: 吴雨 | Hits:

[ARM-PowerPC-ColdFire-MIPSJPCsource

Description: JPC: x86 PC Hardware Emulator. 牛津大学开发的一个纯JAVA的x86系统结构硬件模拟器。-JPC: x86 PC Hardware Emulator. Oxford University developed a pure JAVA system architecture of the x86 hardware simulator.
Platform: | Size: 3952640 | Author: 雷田 | Hits:

[JSP/Javatest_Jpcap

Description: 基于Jpcap开发的流量监控软件,能实现总流量的统计,以及数据包的捕获和分析,数据库为mysql。-Jpcap based on the development of traffic monitoring software, can achieve the total traffic statistics, as well as packet capture and analysis, database mysql.
Platform: | Size: 103424 | Author: wang | Hits:

[Graph programtest

Description: 可用于判断JPEG2000图像(.jpc)文件是否符合DCI(数字电影工业规范)标准。 使用方法:敲入命令行test.exe ***.jpc即可-The program is used to judge whether a .jpc document is on the DCI standard.
Platform: | Size: 4613120 | Author: CaiDongqi | Hits:

[Successful incentivejp2info

Description: JP2INFO Get information about the image in a JP2 or JPC file.This function returns a structure holding information about a JPEG 2000 image file.
Platform: | Size: 1024 | Author: ssdfsfrsdf | Hits:

[Special EffectscximageLite_V600

Description: CxImage is a C++ class that can load, save, display, transform images in a very simple and fast way. CxImage is open source and licensed under the zlib license. In a nutshell, this means that you can use the code however you wish, as long as you don t claim it as your own. With more than 200 functions, and with comprehensive working demos, CxImage offers all the tools to build simple image processing applications on a fast learning curve. Supported file formats are: BMP, GIF, ICO, CUR, JBG, JPG, JPC, JP2, PCX, PGX, PNG, PNM, RAS, SKA, TGA, TIF, WBMP, WMF, RAW, CRW, NEF, CR2, DNG, ORF, ARW, ERF, 3FR, DCR, X3F, MEF, RAF, MRW, PEF, SR2. Cximage is highly portable and has been tested with Visual C++ 6 / 2008, C++ Builder 3 / 6, MinGW on Windows, and with gcc 3.3.2 on Linux. The library can be linked statically, or through a DLL or an activex component.
Platform: | Size: 563200 | Author: tayfun karan | Hits:

[J2MEPDAPDemo

Description: J2ME MIDlet for secret viewing encoded images on mobile phone. Encoding JPG image to JPC-file by simply xor-ing all bytes with 0xFF and changing file extension.
Platform: | Size: 260096 | Author: Vlados | Hits:

[JSP/JavaJpg2Jpc

Description: Jpg2Jpc converters folder with subfolders of JPG-impages to JPC-file by xor-ing each byte and change extension to "JPC".
Platform: | Size: 18432 | Author: Vlados | Hits:

CodeBus www.codebus.net