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

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

?? dummygraphics2d.java

?? java 報表 to office文檔: 本包由java語言開發
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/* ====================================================================   Copyright 2004   Apache Software Foundation   Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0   Unless required by applicable law or agreed to in writing, software   distributed under the License is distributed on an "AS IS" BASIS,   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   See the License for the specific language governing permissions and   limitations under the License.==================================================================== */package org.apache.poi.hssf.usermodel;import java.awt.*;import java.awt.geom.AffineTransform;import java.awt.image.BufferedImage;import java.awt.image.BufferedImageOp;import java.awt.image.ImageObserver;import java.awt.image.RenderedImage;import java.awt.image.renderable.RenderableImage;import java.awt.font.GlyphVector;import java.awt.font.FontRenderContext;import java.util.Map;import java.text.AttributedCharacterIterator;public class DummyGraphics2d        extends Graphics2D{    BufferedImage img;    private Graphics2D g2D;    public DummyGraphics2d()    {        img = new BufferedImage(1000, 1000, 2);        g2D = (Graphics2D)img.getGraphics();    }    public void addRenderingHints(Map hints)    {        System.out.println( "addRenderingHinds(Map):" );        System.out.println( "  hints = " + hints );        g2D.addRenderingHints( hints );    }    public void clip(Shape s)    {        System.out.println( "clip(Shape):" );        System.out.println( "  s = " + s );        g2D.clip( s );    }    public void draw(Shape s)    {        System.out.println( "draw(Shape):" );        System.out.println( "s = " + s );        g2D.draw( s );    }    public void drawGlyphVector(GlyphVector g, float x, float y)    {        System.out.println( "drawGlyphVector(GlyphVector, float, float):" );        System.out.println( "g = " + g );        System.out.println( "x = " + x );        System.out.println( "y = " + y );        g2D.drawGlyphVector( g, x, y );    }    public void drawImage(BufferedImage img,				   BufferedImageOp op,				   int x,				   int y)    {        System.out.println( "drawImage(BufferedImage, BufferedImageOp, x, y):" );        System.out.println( "img = " + img );        System.out.println( "op = " + op );        System.out.println( "x = " + x );        System.out.println( "y = " + y );        g2D.drawImage( img, op, x, y );    }    public boolean drawImage(Image img,                                      AffineTransform xform,                                      ImageObserver obs)    {        System.out.println( "drawImage(Image,AfflineTransform,ImageObserver):" );        System.out.println( "img = " + img );        System.out.println( "xform = " + xform );        System.out.println( "obs = " + obs );        return g2D.drawImage( img, xform, obs );    }    public void drawRenderableImage(RenderableImage img,                                             AffineTransform xform)    {        System.out.println( "drawRenderableImage(RenderableImage, AfflineTransform):" );        System.out.println( "img = " + img );        System.out.println( "xform = " + xform );        g2D.drawRenderableImage( img, xform );    }    public void drawRenderedImage(RenderedImage img,                                           AffineTransform xform)    {        System.out.println( "drawRenderedImage(RenderedImage, AffineTransform):" );        System.out.println( "img = " + img );        System.out.println( "xform = " + xform );        g2D.drawRenderedImage( img, xform );    }    public void drawString(AttributedCharacterIterator iterator,                                    float x, float y)    {        System.out.println( "drawString(AttributedCharacterIterator):" );        System.out.println( "iterator = " + iterator );        System.out.println( "x = " + x );        System.out.println( "y = " + y );        g2D.drawString( iterator, x, y );    }//    public void drawString(AttributedCharacterIterator iterator,//                                    int x, int y)//    {//        g2D.drawString( iterator, x, y );//    }    public void drawString(String s, float x, float y)    {        System.out.println( "drawString(s,x,y):" );        System.out.println( "s = " + s );        System.out.println( "x = " + x );        System.out.println( "y = " + y );        g2D.drawString( s, x, y );    }//    public void drawString(String str, int x, int y)//    {//        g2D.drawString( str, x, y );//    }    public void fill(Shape s)    {        System.out.println( "fill(Shape):" );        System.out.println( "s = " + s );        g2D.fill( s );    }//    public void fill3DRect(int x, int y, int width, int height,//			   boolean raised) {//        g2D.fill3DRect( x, y, width, height, raised );//    }    public Color getBackground()    {        System.out.println( "getBackground():" );        return g2D.getBackground();    }    public Composite getComposite()    {        System.out.println( "getComposite():" );        return g2D.getComposite();    }    public GraphicsConfiguration getDeviceConfiguration()    {        System.out.println( "getDeviceConfiguration():" );        return g2D.getDeviceConfiguration();    }    public FontRenderContext getFontRenderContext()    {        System.out.println( "getFontRenderContext():" );        return g2D.getFontRenderContext();    }    public Paint getPaint()    {        System.out.println( "getPaint():" );        return g2D.getPaint();    }    public Object getRenderingHint(RenderingHints.Key hintKey)    {        System.out.println( "getRenderingHint(RenderingHints.Key):" );        System.out.println( "hintKey = " + hintKey );        return g2D.getRenderingHint( hintKey );    }    public RenderingHints getRenderingHints()    {        System.out.println( "getRenderingHints():" );        return g2D.getRenderingHints();    }    public Stroke getStroke()    {        System.out.println( "getStroke():" );        return g2D.getStroke();    }    public AffineTransform getTransform()    {        System.out.println( "getTransform():" );        return g2D.getTransform();    }    public boolean hit(Rectangle rect,				Shape s,				boolean onStroke)    {        System.out.println( "hit(Rectangle, Shape, onStroke):" );        System.out.println( "rect = " + rect );        System.out.println( "s = " + s );        System.out.println( "onStroke = " + onStroke );        return g2D.hit( rect, s, onStroke );    }    public void rotate(double theta)    {        System.out.println( "rotate(theta):" );        System.out.println( "theta = " + theta );        g2D.rotate( theta );    }    public void rotate(double theta, double x, double y)    {        System.out.println( "rotate(double,double,double):" );        System.out.println( "theta = " + theta );        System.out.println( "x = " + x );        System.out.println( "y = " + y );        g2D.rotate( theta, x, y );    }    public void scale(double sx, double sy)    {        System.out.println( "scale(double,double):" );        System.out.println( "sx = " + sx );        System.out.println( "sy" );        g2D.scale( sx, sy );    }    public void setBackground(Color color)    {        System.out.println( "setBackground(Color):" );        System.out.println( "color = " + color );        g2D.setBackground( color );    }    public void setComposite(Composite comp)    {        System.out.println( "setComposite(Composite):" );        System.out.println( "comp = " + comp );        g2D.setComposite( comp );    }    public void setPaint( Paint paint )    {        System.out.println( "setPain(Paint):" );        System.out.println( "paint = " + paint );        g2D.setPaint( paint );    }    public void setRenderingHint(RenderingHints.Key hintKey, Object hintValue)    {        System.out.println( "setRenderingHint(RenderingHints.Key, Object):" );        System.out.println( "hintKey = " + hintKey );        System.out.println( "hintValue = " + hintValue );        g2D.setRenderingHint( hintKey, hintValue );    }    public void setRenderingHints(Map hints)    {        System.out.println( "setRenderingHints(Map):" );        System.out.println( "hints = " + hints );        g2D.setRenderingHints( hints );    }    public void setStroke(Stroke s)    {        System.out.println( "setStroke(Stoke):" );        System.out.println( "s = " + s );        g2D.setStroke( s );    }    public void setTransform(AffineTransform Tx)    {        System.out.println( "setTransform():" );        System.out.println( "Tx = " + Tx );        g2D.setTransform( Tx );    }    public void shear(double shx, double shy)    {        System.out.println( "shear(shx, dhy):" );        System.out.println( "shx = " + shx );        System.out.println( "shy = " + shy );        g2D.shear( shx, shy );    }    public void transform(AffineTransform Tx)    {        System.out.println( "transform(AffineTransform):" );        System.out.println( "Tx = " + Tx );        g2D.transform( Tx );    }    public void translate(double tx, double ty)    {        System.out.println( "translate(double, double):" );        System.out.println( "tx = " + tx );        System.out.println( "ty = " + ty );        g2D.translate( tx, ty );    }//    public void translate(int x, int y)//    {//        g2D.translate( x, y );//    }    public void clearRect(int x, int y, int width, int height)    {        System.out.println( "clearRect(int,int,int,int):" );        System.out.println( "x = " + x );        System.out.println( "y = " + y );        System.out.println( "width = " + width );        System.out.println( "height = " + height );        g2D.clearRect( x, y, width, height );    }    public void clipRect(int x, int y, int width, int height)    {        System.out.println( "clipRect(int, int, int, int):" );        System.out.println( "x = " + x );        System.out.println( "y = " + y );        System.out.println( "width = " + width );        System.out.println( "height = " + height );        g2D.clipRect( x, y, width, height );    }    public void copyArea(int x, int y, int width, int height,				  int dx, int dy)    {        System.out.println( "copyArea(int,int,int,int):" );        System.out.println( "x = " + x );        System.out.println( "y = " + y );        System.out.println( "width = " + width );        System.out.println( "height = " + height );        g2D.copyArea( x, y, width, height, dx, dy );    }    public Graphics create()    {        System.out.println( "create():" );        return g2D.create();    }    public Graphics create(int x, int y, int width, int height) {        System.out.println( "create(int,int,int,int):" );        System.out.println( "x = " + x );        System.out.println( "y = " + y );        System.out.println( "width = " + width );        System.out.println( "height = " + height );        return g2D.create( x, y, width, height );    }    public void dispose()    {        System.out.println( "dispose():" );        g2D.dispose();    }    public void draw3DRect(int x, int y, int width, int height,			   boolean raised) {        System.out.println( "draw3DRect(int,int,int,int,boolean):" );        System.out.println( "x = " + x );        System.out.println( "y = " + y );        System.out.println( "width = " + width );        System.out.println( "height = " + height );        System.out.println( "raised = " + raised );        g2D.draw3DRect( x, y, width, height, raised );    }    public void drawArc(int x, int y, int width, int height,				 int startAngle, int arcAngle)    {        System.out.println( "drawArc(int,int,int,int,int,int):" );        System.out.println( "x = " + x );        System.out.println( "y = " + y );        System.out.println( "width = " + width );        System.out.println( "height = " + height );

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本午夜一本久久久综合| av电影在线观看不卡| 国产精品亚洲第一| 91国偷自产一区二区开放时间| 欧美一区二区二区| 亚洲色图色小说| 韩国视频一区二区| 在线日韩一区二区| 中文字幕不卡在线| 寂寞少妇一区二区三区| 欧美美女直播网站| 一区二区三区在线视频免费| 国产成人午夜99999| 欧美一区二区三区视频免费播放| 亚洲精品亚洲人成人网在线播放| 成人综合婷婷国产精品久久| 欧美大胆一级视频| 日韩国产欧美在线视频| 91精品福利视频| 1区2区3区精品视频| 成人一区在线看| 国产午夜久久久久| 国产精品一区二区久久精品爱涩| 欧美一区二区三区在| 青青草国产精品97视觉盛宴| 欧美色偷偷大香| 亚洲一区二区三区中文字幕| 色综合视频在线观看| 国产精品成人免费精品自在线观看 | 91麻豆视频网站| 国产精品视频一二三区| 国产成人av电影在线观看| 久久久综合九色合综国产精品| 麻豆精品在线看| 日韩欧美久久一区| 激情六月婷婷久久| 久久综合九色综合97婷婷女人 | 欧美巨大另类极品videosbest| 亚洲国产精品一区二区www在线| 日本福利一区二区| 亚洲一二三四在线| 欧美特级限制片免费在线观看| 亚洲bt欧美bt精品777| 欧美裸体bbwbbwbbw| 午夜精品在线看| 欧美日韩成人在线| 免费在线视频一区| 精品国产sm最大网站| 国产精品88av| 亚洲男人电影天堂| 欧美一区二区三区性视频| 极品美女销魂一区二区三区| 久久久久国色av免费看影院| av欧美精品.com| 亚洲一区二区欧美日韩| 欧美一区二区三区不卡| 国产麻豆精品一区二区| 国产精品的网站| 欧美日韩在线不卡| 精品一区二区三区久久| 国产精品毛片久久久久久| 在线视频一区二区三| 日韩激情在线观看| 国产日韩精品一区二区三区| 色偷偷成人一区二区三区91| 日韩电影在线看| 国产亚洲精久久久久久| 91国产成人在线| 美女一区二区三区| 国产精品久久久久久久久免费桃花| 欧美无乱码久久久免费午夜一区| 国内精品国产三级国产a久久| 亚洲丝袜自拍清纯另类| 日韩欧美一级二级三级| 色综合中文字幕国产 | 国产高清不卡一区| 亚洲国产成人av网| 国产欧美日产一区| 欧美精品久久久久久久多人混战| 成人中文字幕在线| 免费在线成人网| 亚洲精品成人在线| 国产日韩欧美a| 欧美成人午夜电影| 欧美日韩免费在线视频| 成人午夜免费视频| 久久精品国产亚洲aⅴ| 一区二区在线观看av| 国产亚洲一区二区在线观看| 欧美福利视频导航| 一本久久综合亚洲鲁鲁五月天| 国产呦萝稀缺另类资源| 亚洲va国产天堂va久久en| 亚洲欧美日韩国产成人精品影院| 国产日韩在线不卡| 日韩精品一区二区三区在线| 欧美精品1区2区| 欧美中文字幕一二三区视频| 成人黄色软件下载| 粉嫩av一区二区三区在线播放 | 99久久国产免费看| 国产精品综合二区| 精品一区二区影视| 美女视频一区二区| 日韩国产精品大片| 天天免费综合色| 亚洲国产日日夜夜| 亚洲国产一区在线观看| 亚洲丝袜另类动漫二区| 亚洲婷婷在线视频| 中文字幕视频一区二区三区久| 久久综合99re88久久爱| 久久久久久久久久看片| 精品久久久久久久久久久久包黑料| 欧美一级生活片| 91麻豆精品国产| 欧美一区二区国产| 精品国产露脸精彩对白| 精品久久久久久久久久久久包黑料 | 国产成人自拍在线| 国产麻豆精品视频| 粉嫩欧美一区二区三区高清影视| 国产成人av影院| av色综合久久天堂av综合| 91小视频在线免费看| 91黄视频在线观看| 欧美日韩国产美| 欧美一区国产二区| 亚洲精品一区二区三区四区高清| 久久美女艺术照精彩视频福利播放 | 国产精品不卡在线观看| 亚洲狼人国产精品| 午夜免费欧美电影| 精品一区二区久久久| 国产精品1区二区.| 日本久久一区二区三区| 欧美性videosxxxxx| 欧美videos大乳护士334| 久久蜜桃av一区二区天堂| 国产精品美女久久久久久2018| 亚洲蜜臀av乱码久久精品蜜桃| 亚洲超碰精品一区二区| 久久国产麻豆精品| aaa欧美色吧激情视频| 欧美日韩国产综合一区二区| 久久奇米777| 夜夜操天天操亚洲| 久久99国产精品麻豆| 99久久精品免费观看| 欧美一区二区视频网站| 国产精品久久久久aaaa| 亚洲成av人片www| 国产aⅴ综合色| 欧美理论片在线| 国产欧美精品一区| 午夜国产不卡在线观看视频| 高清国产一区二区三区| 欧美探花视频资源| 国产欧美va欧美不卡在线| 亚洲电影第三页| 国产sm精品调教视频网站| 3d动漫精品啪啪一区二区竹菊| 欧美国产激情二区三区| 五月激情六月综合| 91亚洲午夜精品久久久久久| 日韩女优电影在线观看| 一区二区三区精品在线观看| 国产成人夜色高潮福利影视| 欧美特级限制片免费在线观看| 国产精品乱码人人做人人爱| 美女视频黄a大片欧美| 在线精品视频一区二区三四| 久久精品日韩一区二区三区| 日韩成人一区二区三区在线观看| 成人aa视频在线观看| 日韩免费看的电影| 亚洲一本大道在线| 不卡av电影在线播放| 精品国免费一区二区三区| 午夜电影久久久| 色婷婷国产精品| 国产精品日韩成人| 国产伦精一区二区三区| 日韩免费视频一区| 日本不卡在线视频| 欧美三级日韩在线| 樱桃视频在线观看一区| 成人免费看片app下载| 久久久99精品免费观看不卡| 久久爱www久久做| 日韩欧美国产麻豆| 久久成人免费网| 欧美大肚乱孕交hd孕妇| 奇米亚洲午夜久久精品| 717成人午夜免费福利电影| 亚洲国产sm捆绑调教视频| 日本道色综合久久| 一卡二卡三卡日韩欧美| 欧美综合一区二区| 午夜伊人狠狠久久|