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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? metado.java

?? iText可以制作中文PDF文件的JAVA源程序最新版下載
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/* * $Id: MetaDo.java,v 1.18 2002/11/19 08:33:39 blowagie Exp $ * $Name:  $ * * Copyright 2001, 2002 Paulo Soares * * The contents of this file are subject to the Mozilla Public License Version 1.1 * (the "License"); you may not use this file except in compliance with the License. * You may obtain a copy of the License at http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the License. * * The Original Code is 'iText, a free JAVA-PDF library'. * * The Initial Developer of the Original Code is Bruno Lowagie. Portions created by * the Initial Developer are Copyright (C) 1999, 2000, 2001, 2002 by Bruno Lowagie. * All Rights Reserved. * Co-Developer of the code is Paulo Soares. Portions created by the Co-Developer * are Copyright (C) 2000, 2001, 2002 by Paulo Soares. All Rights Reserved. * * Contributor(s): all the names of the contributors are added in the source code * where applicable. * * Alternatively, the contents of this file may be used under the terms of the * LGPL license (the "GNU LIBRARY GENERAL PUBLIC LICENSE"), in which case the * provisions of LGPL are applicable instead of those above.  If you wish to * allow use of your version of this file only under the terms of the LGPL * License and not to allow others to use your version of this file under * the MPL, indicate your decision by deleting the provisions above and * replace them with the notice and other provisions required by the LGPL. * If you do not delete the provisions above, a recipient may use your version * of this file under either the MPL or the GNU LIBRARY GENERAL PUBLIC LICENSE. * * This library is free software; you can redistribute it and/or modify it * under the terms of the MPL as stated above or under the terms of the GNU * Library General Public License as published by the Free Software Foundation; * either version 2 of the License, or any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Library general Public License for more * details. * * If you didn't download this code from the following link, you should check if * you aren't using an obsolete version: * http://www.lowagie.com/iText/ */package com.lowagie.text.pdf.wmf;import java.io.*;import com.lowagie.text.pdf.*;import com.lowagie.text.*;import java.awt.Point;import java.awt.Color;import java.util.ArrayList;public class MetaDo {        public static final int META_SETBKCOLOR            = 0x0201;    public static final int META_SETBKMODE             = 0x0102;    public static final int META_SETMAPMODE            = 0x0103;    public static final int META_SETROP2               = 0x0104;    public static final int META_SETRELABS             = 0x0105;    public static final int META_SETPOLYFILLMODE       = 0x0106;    public static final int META_SETSTRETCHBLTMODE     = 0x0107;    public static final int META_SETTEXTCHAREXTRA      = 0x0108;    public static final int META_SETTEXTCOLOR          = 0x0209;    public static final int META_SETTEXTJUSTIFICATION  = 0x020A;    public static final int META_SETWINDOWORG          = 0x020B;    public static final int META_SETWINDOWEXT          = 0x020C;    public static final int META_SETVIEWPORTORG        = 0x020D;    public static final int META_SETVIEWPORTEXT        = 0x020E;    public static final int META_OFFSETWINDOWORG       = 0x020F;    public static final int META_SCALEWINDOWEXT        = 0x0410;    public static final int META_OFFSETVIEWPORTORG     = 0x0211;    public static final int META_SCALEVIEWPORTEXT      = 0x0412;    public static final int META_LINETO                = 0x0213;    public static final int META_MOVETO                = 0x0214;    public static final int META_EXCLUDECLIPRECT       = 0x0415;    public static final int META_INTERSECTCLIPRECT     = 0x0416;    public static final int META_ARC                   = 0x0817;    public static final int META_ELLIPSE               = 0x0418;    public static final int META_FLOODFILL             = 0x0419;    public static final int META_PIE                   = 0x081A;    public static final int META_RECTANGLE             = 0x041B;    public static final int META_ROUNDRECT             = 0x061C;    public static final int META_PATBLT                = 0x061D;    public static final int META_SAVEDC                = 0x001E;    public static final int META_SETPIXEL              = 0x041F;    public static final int META_OFFSETCLIPRGN         = 0x0220;    public static final int META_TEXTOUT               = 0x0521;    public static final int META_BITBLT                = 0x0922;    public static final int META_STRETCHBLT            = 0x0B23;    public static final int META_POLYGON               = 0x0324;    public static final int META_POLYLINE              = 0x0325;    public static final int META_ESCAPE                = 0x0626;    public static final int META_RESTOREDC             = 0x0127;    public static final int META_FILLREGION            = 0x0228;    public static final int META_FRAMEREGION           = 0x0429;    public static final int META_INVERTREGION          = 0x012A;    public static final int META_PAINTREGION           = 0x012B;    public static final int META_SELECTCLIPREGION      = 0x012C;    public static final int META_SELECTOBJECT          = 0x012D;    public static final int META_SETTEXTALIGN          = 0x012E;    public static final int META_CHORD                 = 0x0830;    public static final int META_SETMAPPERFLAGS        = 0x0231;    public static final int META_EXTTEXTOUT            = 0x0a32;    public static final int META_SETDIBTODEV           = 0x0d33;    public static final int META_SELECTPALETTE         = 0x0234;    public static final int META_REALIZEPALETTE        = 0x0035;    public static final int META_ANIMATEPALETTE        = 0x0436;    public static final int META_SETPALENTRIES         = 0x0037;    public static final int META_POLYPOLYGON           = 0x0538;    public static final int META_RESIZEPALETTE         = 0x0139;    public static final int META_DIBBITBLT             = 0x0940;    public static final int META_DIBSTRETCHBLT         = 0x0b41;    public static final int META_DIBCREATEPATTERNBRUSH = 0x0142;    public static final int META_STRETCHDIB            = 0x0f43;    public static final int META_EXTFLOODFILL          = 0x0548;    public static final int META_DELETEOBJECT          = 0x01f0;    public static final int META_CREATEPALETTE         = 0x00f7;    public static final int META_CREATEPATTERNBRUSH    = 0x01F9;    public static final int META_CREATEPENINDIRECT     = 0x02FA;    public static final int META_CREATEFONTINDIRECT    = 0x02FB;    public static final int META_CREATEBRUSHINDIRECT   = 0x02FC;    public static final int META_CREATEREGION          = 0x06FF;    public PdfContentByte cb;    public InputMeta in;    int left;    int top;    int right;    int bottom;    int inch;    MetaState state = new MetaState();    public MetaDo(InputStream in, PdfContentByte cb) {        this.cb = cb;        this.in = new InputMeta(in);    }        public void readAll() throws IOException, DocumentException{        if (in.readInt() != 0x9AC6CDD7) {            throw new DocumentException("Not a placeable windows metafile");        }        in.readWord();        left = in.readShort();        top = in.readShort();        right = in.readShort();        bottom = in.readShort();        inch = in.readWord();        state.setScalingX((float)(right - left) / (float)inch * 72f);        state.setScalingY((float)(bottom - top) / (float)inch * 72f);        state.setOffsetWx(left);        state.setOffsetWy(top);        state.setExtentWx(right - left);        state.setExtentWy(bottom - top);        in.readInt();        in.readWord();        in.skip(18);                int tsize;        int function;        cb.setLineCap(1);        cb.setLineJoin(1);        for (;;) {            int lenMarker = in.getLength();            tsize = in.readInt();            if (tsize < 3)                break;            function = in.readWord();            switch (function) {                case 0:                    break;                case META_CREATEPALETTE:                case META_CREATEREGION:                case META_DIBCREATEPATTERNBRUSH:                    state.addMetaObject(new MetaObject());                    break;                case META_CREATEPENINDIRECT:                {                    MetaPen pen = new MetaPen();                    pen.init(in);                    state.addMetaObject(pen);                    break;                }                case META_CREATEBRUSHINDIRECT:                {                    MetaBrush brush = new MetaBrush();                    brush.init(in);                    state.addMetaObject(brush);                    break;                }                case META_CREATEFONTINDIRECT:                {                    MetaFont font = new MetaFont();                    font.init(in);                    state.addMetaObject(font);                    break;                }                case META_SELECTOBJECT:                {                    int idx = in.readWord();                    state.selectMetaObject(idx, cb);                    break;                }                case META_DELETEOBJECT:                {                    int idx = in.readWord();                    state.deleteMetaObject(idx);                    break;                }                case META_SAVEDC:                    state.saveState(cb);                    break;                case META_RESTOREDC:                {                    int idx = in.readShort();                    state.restoreState(idx, cb);                    break;                }                case META_SETWINDOWORG:                    state.setOffsetWy(in.readShort());                    state.setOffsetWx(in.readShort());                    break;                case META_SETWINDOWEXT:                    state.setExtentWy(in.readShort());                    state.setExtentWx(in.readShort());                    break;                case META_MOVETO:                {                    int y = in.readShort();                    Point p = new Point(in.readShort(), y);                    state.setCurrentPoint(p);                    break;                }                case META_LINETO:                {                    int y = in.readShort();                    int x = in.readShort();                    Point p = state.getCurrentPoint();                    cb.moveTo(state.transformX(p.x), state.transformY(p.y));                    cb.lineTo(state.transformX(x), state.transformY(y));                    cb.stroke();                    state.setCurrentPoint(new Point(x, y));                    break;                }                case META_POLYLINE:                {                    state.setLineJoinPolygon(cb);                    int len = in.readWord();                    int x = in.readShort();                    int y = in.readShort();                    cb.moveTo(state.transformX(x), state.transformY(y));                    for (int k = 1; k < len; ++k) {                        x = in.readShort();                        y = in.readShort();                        cb.lineTo(state.transformX(x), state.transformY(y));                    }                    cb.stroke();                    break;                }                case META_POLYGON:                {                    if (isNullStrokeFill(false))                        break;                    int len = in.readWord();                    int sx = in.readShort();                    int sy = in.readShort();                    cb.moveTo(state.transformX(sx), state.transformY(sy));                    for (int k = 1; k < len; ++k) {                        int x = in.readShort();                        int y = in.readShort();                        cb.lineTo(state.transformX(x), state.transformY(y));                    }                    cb.lineTo(state.transformX(sx), state.transformY(sy));                    strokeAndFill();                    break;                }                case META_POLYPOLYGON:                {                    if (isNullStrokeFill(false))                        break;                    int numPoly = in.readWord();                    int lens[] = new int[numPoly];                    for (int k = 0; k < lens.length; ++k)                        lens[k] = in.readWord();                    for (int j = 0; j < lens.length; ++j) {                        int len = lens[j];                        int sx = in.readShort();                        int sy = in.readShort();                        cb.moveTo(state.transformX(sx), state.transformY(sy));                        for (int k = 1; k < len; ++k) {                            int x = in.readShort();                            int y = in.readShort();                            cb.lineTo(state.transformX(x), state.transformY(y));                        }                        cb.lineTo(state.transformX(sx), state.transformY(sy));                    }                    strokeAndFill();                    break;                }                case META_ELLIPSE:                {                    if (isNullStrokeFill(state.getLineNeutral()))                        break;                    int b = in.readShort();                    int r = in.readShort();                    int t = in.readShort();                    int l = in.readShort();

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
99精品偷自拍| 国产成人综合在线播放| 亚洲视频免费在线| 国产区在线观看成人精品| 欧美zozozo| 精品国产91久久久久久久妲己| 欧美精选一区二区| 欧美另类videos死尸| 6080亚洲精品一区二区| 欧美男男青年gay1069videost| 欧美日韩一二三| 欧美男生操女生| 精品裸体舞一区二区三区| 欧美成人女星排行榜| 国产午夜亚洲精品午夜鲁丝片| 日本一区二区免费在线 | 亚洲精品视频在线观看网站| 亚洲三级理论片| 亚洲亚洲人成综合网络| 免费精品99久久国产综合精品| 国产一区二区三区日韩| caoporm超碰国产精品| 欧美私模裸体表演在线观看| 日韩色在线观看| 亚洲国产精品传媒在线观看| 亚洲美女屁股眼交| 五月激情综合网| 高清不卡一区二区在线| 欧美综合欧美视频| 7878成人国产在线观看| 久久精品视频免费观看| 艳妇臀荡乳欲伦亚洲一区| 久久国产精品免费| 成人av在线一区二区三区| 在线看国产一区二区| 精品欧美一区二区久久| 亚洲色图欧洲色图| 麻豆国产精品777777在线| 99精品久久只有精品| 日韩午夜小视频| 亚洲欧美日韩中文字幕一区二区三区| 日韩高清不卡一区二区| caoporn国产精品| 日韩欧美国产三级| 亚洲主播在线播放| www.亚洲免费av| 日韩欧美在线网站| 亚洲一区二区三区三| 粗大黑人巨茎大战欧美成人| 这里只有精品电影| 亚洲精品视频在线| 成人a免费在线看| 久久久午夜精品理论片中文字幕| 香蕉成人啪国产精品视频综合网| aaa亚洲精品一二三区| 日韩女优制服丝袜电影| 午夜欧美2019年伦理| 色综合中文字幕| 国产精品你懂的在线欣赏| 久久精品理论片| 在线电影一区二区三区| 亚洲一区在线视频观看| 成人av网址在线观看| 国产日韩视频一区二区三区| 青青草原综合久久大伊人精品优势 | 国产亚洲欧美在线| 蜜臀av一区二区在线免费观看| 色婷婷精品大在线视频| 最近日韩中文字幕| 成人h动漫精品一区二| 国产日韩欧美高清在线| 国产麻豆精品95视频| 26uuuu精品一区二区| 激情综合一区二区三区| 亚洲精品一线二线三线无人区| 青青青伊人色综合久久| 日韩一区二区电影| 九九久久精品视频| 精品毛片乱码1区2区3区| 国产一区二区三区最好精华液| 26uuu精品一区二区| 狠狠色丁香婷综合久久| 国产日韩欧美在线一区| 国产成人无遮挡在线视频| 久久久精品免费观看| 成人av在线播放网站| 亚洲欧美日韩小说| 欧美日韩极品在线观看一区| 日韩主播视频在线| 亚洲精品一区二区精华| 国产在线精品一区二区夜色| 日本一区二区三区国色天香 | 亚洲精品在线一区二区| 国产乱子伦视频一区二区三区 | 国产精品久久久久久久久搜平片 | 蜜乳av一区二区| 欧美成人精品福利| 成人性生交大片免费看在线播放| 国产精品妹子av| 欧美在线影院一区二区| 蜜臀99久久精品久久久久久软件| 久久精品亚洲乱码伦伦中文| 99r精品视频| 天堂av在线一区| 久久伊人蜜桃av一区二区| www.一区二区| 美洲天堂一区二卡三卡四卡视频| 久久嫩草精品久久久久| 在线观看一区二区视频| 国产一区二区日韩精品| 一区二区三区在线不卡| 精品国产一区二区三区不卡 | 国产一区二区三区综合| 国产精品入口麻豆九色| 欧美日韩视频不卡| 国产东北露脸精品视频| 一级做a爱片久久| 精品少妇一区二区三区免费观看| 91亚洲资源网| 国产一区二区三区免费| 亚洲成人免费在线观看| 中文子幕无线码一区tr| 欧美一区二区成人6969| 在线免费av一区| 成人午夜在线免费| 久久综合综合久久综合| 亚洲综合色成人| 久久精品免视看| 欧美美女激情18p| 色婷婷精品久久二区二区蜜臂av | 色综合天天天天做夜夜夜夜做| 久久国产人妖系列| 亚洲电影一级片| 亚洲欧洲av在线| 久久久久久久久久看片| 欧美肥妇bbw| 欧美日韩视频不卡| 欧洲日韩一区二区三区| 国产福利一区二区三区| 蜜桃久久av一区| 日精品一区二区| 亚洲成av人影院在线观看网| 国产精品久久影院| 亚洲国产激情av| 中文在线资源观看网站视频免费不卡| 26uuu久久天堂性欧美| 欧美videossexotv100| 欧美精品在线一区二区三区| 欧美性色综合网| 欧美亚洲动漫制服丝袜| 日本高清成人免费播放| 一本色道久久综合亚洲aⅴ蜜桃| 床上的激情91.| caoporm超碰国产精品| av午夜一区麻豆| 91亚洲精品一区二区乱码| 成人免费看黄yyy456| 91片在线免费观看| 99精品欧美一区二区三区综合在线| 成人三级伦理片| 大桥未久av一区二区三区中文| 风流少妇一区二区| 成人美女在线观看| 91色在线porny| 欧美精品亚洲一区二区在线播放| 日本国产一区二区| 在线不卡中文字幕播放| 日韩欧美精品在线视频| 国产片一区二区三区| 亚洲图片激情小说| 夜夜嗨av一区二区三区| 美美哒免费高清在线观看视频一区二区 | 亚洲男人的天堂在线aⅴ视频| 亚洲乱码一区二区三区在线观看| 亚洲精品videosex极品| 亚洲第一综合色| 免费成人美女在线观看| 国产精品资源在线看| 波多野结衣欧美| 欧美午夜片在线观看| 日韩精品自拍偷拍| 国产精品欧美久久久久无广告 | 欧美人与性动xxxx| 精品国产乱码久久久久久久 | 欧美喷水一区二区| 久久免费午夜影院| 亚洲午夜在线观看视频在线| 久久精品国产99久久6| 99在线视频精品| 在线成人午夜影院| 中文一区二区在线观看| 亚洲一区在线观看视频| 激情六月婷婷综合| 欧美性xxxxxx少妇| 久久久精品2019中文字幕之3| 亚洲午夜视频在线观看| 国内一区二区视频| 欧美在线你懂的| 久久伊人蜜桃av一区二区| 亚洲最大成人网4388xx|