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

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

?? pdflib.hpp

?? 將TXT文件轉(zhuǎn)換成PDF文件,從CODEPROJECTS網(wǎng)站上得來的,很好用!
?? HPP
字號:
/*---------------------------------------------------------------------------* |              PDFlib - A library for generating PDF on the fly             | +---------------------------------------------------------------------------+ | Copyright (c) 1997-2002 PDFlib GmbH and Thomas Merz. All rights reserved. | +---------------------------------------------------------------------------+ |    This software is NOT in the public domain.  It can be used under two   | |    substantially different licensing terms:                               | |                                                                           | |    The commercial license is available for a fee, and allows you to       | |    - ship a commercial product based on PDFlib                            | |    - implement commercial Web services with PDFlib                        | |    - distribute (free or commercial) software when the source code is     | |      not made available                                                   | |    Details can be found in the file PDFlib-license.pdf.                   | |                                                                           | |    The "Aladdin Free Public License" doesn't require any license fee,     | |    and allows you to                                                      | |    - develop and distribute PDFlib-based software for which the complete  | |      source code is made available                                        | |    - redistribute PDFlib non-commercially under certain conditions        | |    - redistribute PDFlib on digital media for a fee if the complete       | |      contents of the media are freely redistributable                     | |    Details can be found in the file aladdin-license.pdf.                  | |                                                                           | |    These conditions extend to ports to other programming languages.       | |    PDFlib is distributed with no warranty of any kind. Commercial users,  | |    however, will receive warranty and support statements in writing.      | *---------------------------------------------------------------------------*/// $Id: pdflib.hpp,v 1.14.2.7 2002/01/07 18:26:29 tm Exp $//// C++ wrapper for PDFlib////#ifndef PDFLIB_HPP#define PDFLIB_HPP#include <string>	using namespace std;// We use PDF as a C++ class name, therefore hide the actual C struct// name for PDFlib usage with C++.#define PDF PDF_c#include "pdflib.h"#ifdef	PDF_THROWS_CPP_EXCEPTIONS#include "except.h"#endif#undef	PDF// #define PDF_THROWS_CPP_EXCEPTIONS#ifdef	PDF_THROWS_CPP_EXCEPTIONS#define PDF_THROWS(x)		throw (x)#define PDF_THROWS_NOTHING	throw ()#else#define PDFlib PDF#define PDF_THROWS(x)#define PDF_THROWS_NOTHING#endif// The C++ class wrapper for PDFlibclass PDFlib {public:#ifdef	PDF_THROWS_CPP_EXCEPTIONS    class Exception    {    public:	Exception(string msg, void *opaque);	string get_message();	const void *get_opaque();    private:	string m_msg;	const void *m_opaque;    }; // Exception    class MemoryException : public Exception    {    public:	MemoryException(string msg, void *opaque);    };    class IOException : public Exception    {    public:	IOException(string msg, void *opaque);    };    class RuntimeException : public Exception    {    public:	RuntimeException(string msg, void *opaque);    };    class IndexException : public Exception    {    public:	IndexException(string msg, void *opaque);    };    class TypeException : public Exception    {    public:	TypeException(string msg, void *opaque);    };    class DivisionByZeroException : public Exception    {    public:	DivisionByZeroException(string msg, void *opaque);    };    class OverflowException : public Exception    {    public:	OverflowException(string msg, void *opaque);    };    class SyntaxException : public Exception    {    public:	SyntaxException(string msg, void *opaque);    };    class ValueException : public Exception    {    public:	ValueException(string msg, void *opaque);    };    class SystemException : public Exception    {    public:	SystemException(string msg, void *opaque);    };    class NonfatalException : public Exception    {    public:	NonfatalException(string msg, void *opaque);    };    class UnknownException : public Exception    {    public:	UnknownException(string msg, void *opaque);    };    PDFlib(allocproc_t allocproc = NULL,	reallocproc_t reallocproc = NULL,	freeproc_t freeproc = NULL,	void *opaque = NULL) PDF_THROWS(Exception);#else // PDF_THROWS_CPP_EXCEPTIONS    PDFlib(errorproc_t errorproc = NULL,	allocproc_t allocproc = NULL,	reallocproc_t reallocproc = NULL,	freeproc_t freeproc = NULL,	void *opaque = NULL);#endif // PDF_THROWS_CPP_EXCEPTIONS    ~PDFlib() PDF_THROWS_NOTHING;    void * get_opaque() PDF_THROWS(Exception);    static int get_majorversion() PDF_THROWS_NOTHING;    static int get_minorversion() PDF_THROWS_NOTHING;    // Overloaded generic open and close methods    int  open(string filename) PDF_THROWS(Exception);    int  open(FILE *fp) PDF_THROWS(Exception);    void open(writeproc_t writeproc) PDF_THROWS(Exception);    void close() PDF_THROWS(Exception);    const char *get_buffer(long *size) PDF_THROWS(Exception);    void begin_page(float width, float height) PDF_THROWS(Exception);    void end_page() PDF_THROWS(Exception);    void set_parameter(string key, string value) PDF_THROWS(Exception);    string get_parameter(string key, float mod) PDF_THROWS(Exception);    float get_value(string key, float mod) PDF_THROWS(Exception);    void set_value(string key, float value) PDF_THROWS(Exception);    void show(string text) PDF_THROWS(Exception);    void show_xy(string text, float x, float y) PDF_THROWS(Exception);    void continue_text(string text) PDF_THROWS(Exception);    int show_boxed(string text, float left, float top,	float width, float height, string hmode, string reserved)	PDF_THROWS(Exception);    void set_text_pos(float x, float y) PDF_THROWS(Exception);    float stringwidth(string text, int font, float size)	PDF_THROWS(Exception);    int  findfont(string fontname, string encoding, int embed)	PDF_THROWS(Exception);    void setfont(int font, float fontsize) PDF_THROWS(Exception);    void save() PDF_THROWS(Exception);    void restore() PDF_THROWS(Exception);    void translate(float tx, float ty) PDF_THROWS(Exception);    void scale(float sx, float sy) PDF_THROWS(Exception);    void rotate(float phi) PDF_THROWS(Exception);    void skew(float alpha, float beta) PDF_THROWS(Exception);    void concat(float a, float b, float c, float d, float e, float f)	PDF_THROWS(Exception);    void setdash(float b, float w) PDF_THROWS(Exception);    void setpolydash(float *darray, int length) PDF_THROWS(Exception);    void setflat(float flat) PDF_THROWS(Exception);    void setlinejoin(int join) PDF_THROWS(Exception);    void setlinecap(int cap) PDF_THROWS(Exception);    void setmiterlimit(float miter) PDF_THROWS(Exception);    void setlinewidth(float width) PDF_THROWS(Exception);    void moveto(float x, float y) PDF_THROWS(Exception);    void lineto(float x, float y) PDF_THROWS(Exception);    void curveto(float x1, float y1, float x2, float y2, float x3, float y3)	PDF_THROWS(Exception);    void circle(float x, float y, float r) PDF_THROWS(Exception);    void arc(float x, float y, float r, float alpha1, float alpha2)	PDF_THROWS(Exception);    void arcn(float x, float y, float r, float alpha1, float alpha2)	PDF_THROWS(Exception);    void rect(float x, float y, float width, float height)	PDF_THROWS(Exception);    void closepath() PDF_THROWS(Exception);    void stroke() PDF_THROWS(Exception);    void closepath_stroke() PDF_THROWS(Exception);    void fill() PDF_THROWS(Exception);    void fill_stroke() PDF_THROWS(Exception);    void closepath_fill_stroke() PDF_THROWS(Exception);    void clip() PDF_THROWS(Exception);    void endpath() PDF_THROWS(Exception);    void setgray_fill(float g) PDF_THROWS(Exception);    void setgray_stroke(float g) PDF_THROWS(Exception);    void setgray(float g) PDF_THROWS(Exception);    void setrgbcolor_fill(float red, float green, float blue)	PDF_THROWS(Exception);    void setrgbcolor_stroke(float red, float green, float blue)	PDF_THROWS(Exception);    void setrgbcolor(float red, float green, float blue) PDF_THROWS(Exception);    int begin_template(float width, float height) PDF_THROWS(Exception);    void end_template() PDF_THROWS(Exception);    void place_image(int image, float x, float y, float scale)	PDF_THROWS(Exception);    int open_image(string type, string source, const char *data,	long len, int width, int height, int components, int bpc,	string params) PDF_THROWS(Exception);    int open_image_file(string type, string filename,    	string stringparam, int intparam) PDF_THROWS(Exception);    void close_image(int image) PDF_THROWS(Exception);    int open_CCITT(string filename, int width, int height,    	bool BitReverse, int K, bool BlackIs1) PDF_THROWS(Exception);    int add_bookmark(string text, int parent, bool open)	PDF_THROWS(Exception);    void set_info(string key, string value) PDF_THROWS(Exception);    void attach_file(float llx, float lly, float urx, float ury,    	string filename, string description, string author,	string mimetype, string icon) PDF_THROWS(Exception);    void add_note(float llx, float lly, float urx, float ury,    	string contents, string title, string icon, bool open)	PDF_THROWS(Exception);    void add_pdflink(float llx, float lly, float urx, float ury,    	string filename, int page, string dest) PDF_THROWS(Exception);    void add_launchlink(float llx, float lly, float urx, float ury,    	string filename) PDF_THROWS(Exception);    void add_locallink(float llx, float lly, float urx, float ury,    	int page, string dest) PDF_THROWS(Exception);    void add_weblink(float llx, float lly, float urx, float ury, string url)	PDF_THROWS(Exception);    void set_border_style(string style, float width) PDF_THROWS(Exception);    void set_border_color(float red, float green, float blue)	PDF_THROWS(Exception);    void set_border_dash(float d1, float d2) PDF_THROWS(Exception);    int open_pdi(string filename, string stringparam, int intparam)	PDF_THROWS(Exception);    void close_pdi(int doc) PDF_THROWS(Exception);    int open_pdi_page(int doc, int page, string label) PDF_THROWS(Exception);    void place_pdi_page(int page, float x, float y, float sx, float sy)	PDF_THROWS(Exception);    void close_pdi_page(int page) PDF_THROWS(Exception);    string get_pdi_parameter(string key, int doc, int page, int index,	int *len) PDF_THROWS(Exception);    float get_pdi_value(string key, int doc, int page, int index)	PDF_THROWS(Exception);    int begin_pattern(float width, float height, float xstep, float ystep,	int painttype) PDF_THROWS(Exception);    void end_pattern() PDF_THROWS(Exception);    int makespotcolor(string spotname, int len) PDF_THROWS(Exception);    void setcolor(string type, string colorspace,	float c1, float c2, float c3, float c4) PDF_THROWS(Exception);    void add_thumbnail(int image) PDF_THROWS(Exception);    void initgraphics() PDF_THROWS(Exception);    void setmatrix(float a, float b, float c, float d, float e, float f)	PDF_THROWS(Exception);private:    PDF_c *p;#ifdef	PDF_THROWS_CPP_EXCEPTIONS    void throw_exception() PDF_THROWS(Exception);    pdf_err_info err_info;#endif};#endif	// PDFLIB_HPP

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色综合色综合色综合色综合色综合| 美女网站视频久久| a美女胸又www黄视频久久| 国产精品色哟哟| 91同城在线观看| 亚洲第一成人在线| 日韩一级欧美一级| 国产成人免费视| 亚洲精品成人悠悠色影视| 欧美午夜免费电影| 久久精品免费看| 国产精品久久久久久久久动漫| 91捆绑美女网站| 婷婷丁香久久五月婷婷| 久久久久久久久久久久久女国产乱| 国产不卡高清在线观看视频| 亚洲品质自拍视频网站| 在线综合视频播放| 成人性生交大片免费看中文| 一级中文字幕一区二区| 日韩免费看的电影| 成人动漫视频在线| 日本在线不卡视频| 国产精品理论片在线观看| 欧美日本一区二区三区四区| 韩国三级中文字幕hd久久精品| 亚洲天堂中文字幕| 精品国产电影一区二区| 在线免费观看日本欧美| 国产一区二区日韩精品| 亚洲福利视频导航| 国产女同性恋一区二区| 欧美欧美午夜aⅴ在线观看| 国产成+人+日韩+欧美+亚洲| 首页综合国产亚洲丝袜| 国产精品国产三级国产aⅴ原创| 欧美日韩一区中文字幕| 99综合电影在线视频| 强制捆绑调教一区二区| 一区二区在线观看不卡| 国产日韩欧美综合在线| 日韩视频中午一区| 91精彩视频在线| 成人在线视频一区| 国产在线一区观看| 人禽交欧美网站| 亚洲一区二区三区四区在线| 欧美高清在线一区二区| 日韩欧美在线1卡| 欧美午夜影院一区| 91麻豆成人久久精品二区三区| 国产尤物一区二区在线| 日韩精品福利网| 亚洲成av人片| 亚洲影院久久精品| 一区二区在线免费| 1区2区3区欧美| 国产精品久久久久久久久免费樱桃| 日韩欧美一区二区视频| 欧美日韩一区不卡| 在线视频国产一区| 欧美日韩综合在线| 欧洲av在线精品| 色就色 综合激情| 91浏览器打开| 在线观看av一区| 欧美视频一区二区三区四区| 色哟哟国产精品| 欧美亚洲综合另类| 欧美综合欧美视频| 欧美男女性生活在线直播观看| 久久久精品人体av艺术| 日韩欧美你懂的| 精品久久一二三区| 久久九九99视频| 久久久噜噜噜久久中文字幕色伊伊| 欧美一区二区三区视频免费| 在线播放91灌醉迷j高跟美女| 制服视频三区第一页精品| 5月丁香婷婷综合| 日韩欧美精品在线| 久久先锋资源网| 日本一区二区三区电影| **性色生活片久久毛片| 夜色激情一区二区| 日日摸夜夜添夜夜添国产精品| 日本免费新一区视频| 久久福利资源站| 夫妻av一区二区| 在线看不卡av| 91精品国产一区二区三区| 26uuu色噜噜精品一区| 欧美国产欧美综合| 亚洲美女免费视频| 日本aⅴ亚洲精品中文乱码| 精品一区二区三区在线观看国产| 国产精品99久久久久久久女警| aa级大片欧美| 欧美一区二区女人| 国产精品污网站| 亚洲超碰97人人做人人爱| 精品一区二区三区欧美| av在线一区二区| 欧美男男青年gay1069videost| 日韩精品专区在线影院重磅| 国产欧美日本一区视频| 一区二区三区91| 加勒比av一区二区| 在线一区二区视频| 欧美精品一区二区在线播放| 亚洲天堂av一区| 久久国产精品72免费观看| 91亚洲精品久久久蜜桃| 精品少妇一区二区三区在线视频| 国产精品视频第一区| 午夜精品久久久久久| 成人综合婷婷国产精品久久蜜臀 | 蜜桃在线一区二区三区| 国产精品亚洲一区二区三区在线 | 91麻豆精品国产91久久久| 国产日本欧美一区二区| 天天亚洲美女在线视频| 成人激情小说乱人伦| 6080午夜不卡| 中文字幕在线一区二区三区| 美女视频黄 久久| 91久久线看在观草草青青| 久久久国际精品| 蜜臀久久久久久久| 91福利国产精品| 国产精品动漫网站| 国精产品一区一区三区mba视频 | 日韩av一区二区在线影视| 成人丝袜高跟foot| 精品成人a区在线观看| 亚洲高清免费视频| 91丨porny丨国产| 国产午夜亚洲精品不卡| 青娱乐精品在线视频| 欧美性感一区二区三区| 国产精品不卡一区二区三区| 国产精品一区久久久久| 欧美电视剧在线看免费| 日韩精品国产欧美| 欧美日韩亚洲综合在线| 一区二区在线电影| 色婷婷综合激情| 自拍偷拍国产精品| 不卡av在线免费观看| 日本一区二区三区四区| 国产精品一区二区视频| 欧美精品一区二区三区在线播放| 人人精品人人爱| 日韩三级伦理片妻子的秘密按摩| 婷婷久久综合九色国产成人| 欧美午夜不卡在线观看免费| 亚洲欧美日韩国产中文在线| 95精品视频在线| 亚洲乱码中文字幕| 色伊人久久综合中文字幕| 亚洲天堂免费在线观看视频| 91丝袜呻吟高潮美腿白嫩在线观看| 中文字幕视频一区| 色综合色狠狠综合色| 亚洲精品国产精华液| 欧美在线综合视频| 天堂成人免费av电影一区| 337p亚洲精品色噜噜噜| 免费日韩伦理电影| 久久这里只有精品视频网| 国产精品一区二区果冻传媒| 亚洲国产成人午夜在线一区| 国产91精品一区二区麻豆网站 | 精品国产免费人成电影在线观看四季 | 韩国一区二区三区| 国产日韩欧美a| www.日韩精品| 亚洲午夜电影在线观看| 日韩一卡二卡三卡国产欧美| 狠狠色丁香久久婷婷综合_中| 欧美国产成人精品| 日本精品一区二区三区高清| 亚洲成人精品一区二区| 日韩精品一区二区三区在线| 国产乱码字幕精品高清av| 国产欧美精品日韩区二区麻豆天美| 99久久精品99国产精品| 亚洲国产综合91精品麻豆| 日韩视频在线你懂得| 粉嫩绯色av一区二区在线观看| 国产精品久久久久久久第一福利 | 亚洲激情自拍偷拍| 777奇米四色成人影色区| 国产一区二三区| 自拍偷自拍亚洲精品播放| 欧美情侣在线播放| 国产成人综合在线| 亚洲国产aⅴ天堂久久| 久久网站最新地址| 欧美色图天堂网|