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

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

?? dummygraphics2d.java

?? java 報表 to office文檔: 本包由java語言開發(fā)
?? 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一区二区三区免费野_久草精品视频
91小视频在线免费看| 国产欧美一区二区三区沐欲| 日本一区二区视频在线| 日韩精品每日更新| 在线观看视频一区二区欧美日韩| 国产日韩亚洲欧美综合| 久热成人在线视频| 91精品在线免费观看| 日韩二区在线观看| 91精品国产综合久久久久久久| 亚洲精品精品亚洲| 91亚洲大成网污www| 中文字幕一区二区三区不卡在线 | 精品国产一区二区三区四区四| 舔着乳尖日韩一区| 56国语精品自产拍在线观看| 婷婷综合另类小说色区| 欧美大肚乱孕交hd孕妇| 久久av中文字幕片| 国产目拍亚洲精品99久久精品| 激情五月激情综合网| 久久精品一区二区三区不卡牛牛 | 日韩av不卡一区二区| 欧美一区二区三区色| 免费观看日韩电影| 国产色产综合色产在线视频| 91在线porny国产在线看| 亚洲一区二区三区在线看| 欧美成人a在线| www.日韩精品| 欧美aaaaa成人免费观看视频| 国产亚洲美州欧州综合国| 91麻豆swag| 国产一区美女在线| 午夜精品久久久久久久| 国产女主播在线一区二区| 在线精品亚洲一区二区不卡| 日韩电影在线观看网站| 亚洲国产精品成人久久综合一区| 欧美精品v日韩精品v韩国精品v| 狠狠色伊人亚洲综合成人| 一区二区三区高清不卡| 国产婷婷精品av在线| 精品国产在天天线2019| 欧美视频一区二区在线观看| 成人av网站免费观看| 男人的天堂久久精品| 亚洲午夜羞羞片| 一区二区三区在线视频免费| 日韩欧美在线综合网| 欧美三区在线观看| 欧美午夜片在线观看| 国产精品一级片在线观看| 美女久久久精品| 亚洲高清一区二区三区| 久久久精品蜜桃| 欧美一区二区久久| 欧美日韩国产成人在线免费| 99久久国产综合精品色伊| 国产精品1024久久| 国内精品久久久久影院一蜜桃| 婷婷综合另类小说色区| 久久久久久久网| 国产亚洲1区2区3区| 欧美久久久一区| 欧美丝袜自拍制服另类| 在线视频一区二区三| 色老汉av一区二区三区| 91丨porny丨户外露出| 色综合久久六月婷婷中文字幕| 成人精品免费网站| a4yy欧美一区二区三区| 秋霞午夜鲁丝一区二区老狼| 麻豆精品视频在线| 免费观看在线色综合| 蜜臀a∨国产成人精品| 午夜久久电影网| 日本亚洲电影天堂| 国产高清精品在线| 色丁香久综合在线久综合在线观看 | 一区二区三区小说| 日韩精品一级二级| 国产一区二区三区久久悠悠色av| 99国产精品久久久久久久久久| 9191久久久久久久久久久| 精品电影一区二区| 中文字幕亚洲精品在线观看| 亚洲精品视频在线| 麻豆国产精品官网| 色老头久久综合| 国产性做久久久久久| 亚洲国产精品尤物yw在线观看| 久久不见久久见中文字幕免费| 国产成人久久精品77777最新版本 国产成人鲁色资源国产91色综 | 国产91露脸合集magnet| 欧美亚洲综合另类| 国产日韩亚洲欧美综合| 视频一区在线播放| 色视频欧美一区二区三区| 欧美电影免费观看高清完整版在线| 中文字幕制服丝袜一区二区三区| 日韩和欧美一区二区| 91久久精品一区二区二区| 亚洲国产精品99久久久久久久久 | 久久久无码精品亚洲日韩按摩| 亚洲一二三区不卡| 日韩成人免费电影| 欧美色图在线观看| 欧美激情综合网| 国产酒店精品激情| 久久久久久久久久美女| 极品美女销魂一区二区三区 | 另类综合日韩欧美亚洲| 91麻豆精品国产91久久久更新时间| 亚洲私人影院在线观看| 99久久久免费精品国产一区二区 | 色偷偷久久人人79超碰人人澡| 中文字幕欧美日本乱码一线二线| 日本欧美一区二区三区乱码| 欧美一级视频精品观看| 日本欧美在线看| 国产精品视频线看| 欧美性感一区二区三区| 亚洲一卡二卡三卡四卡无卡久久| 色综合久久久久| 亚洲裸体xxx| 欧美日韩国产a| 老司机精品视频线观看86| 91精品欧美一区二区三区综合在| 丝袜美腿亚洲综合| 久久久精品免费网站| 国产一区二区成人久久免费影院| 中文字幕免费不卡| 欧美日韩五月天| 久久99国产精品久久99果冻传媒| 久久九九久久九九| 91久久久免费一区二区| 日韩av二区在线播放| 国产精品久久久久久久久久久免费看| 欧美日韩成人激情| 日本精品视频一区二区三区| 国产在线一区二区| 美女国产一区二区| 亚洲小说春色综合另类电影| 精品国产99国产精品| 色婷婷亚洲综合| 成人午夜激情影院| 久久成人av少妇免费| 亚洲天堂免费在线观看视频| 这里只有精品视频在线观看| 99视频有精品| 成人午夜免费av| 国产一区二区免费在线| 石原莉奈一区二区三区在线观看| 中文字幕一区二区三区在线不卡 | aaa欧美色吧激情视频| 国产揄拍国内精品对白| 激情综合网最新| 美国毛片一区二区三区| 亚洲1区2区3区4区| 国产精品国产a| 欧美国产一区在线| 日韩亚洲欧美在线| 日韩一级高清毛片| 欧美精品vⅰdeose4hd| 91精品久久久久久久99蜜桃 | 成人欧美一区二区三区黑人麻豆 | 欧美色大人视频| 欧美日韩在线播放三区| 97久久精品人人爽人人爽蜜臀| 懂色av一区二区夜夜嗨| 色综合色综合色综合 | 一区二区高清在线| 亚洲一级在线观看| 国内精品在线播放| 青青国产91久久久久久| 国产一区激情在线| 成人av在线看| 成人免费视频app| 欧美日本一区二区三区| 精品人在线二区三区| 中文字幕一区二区三区四区不卡 | 日韩黄色片在线观看| 国产91丝袜在线观看| 欧美在线观看视频在线| 制服丝袜中文字幕一区| 国产婷婷色一区二区三区四区 | 99国产麻豆精品| 777午夜精品视频在线播放| 亚洲欧洲精品成人久久奇米网| 久久国产尿小便嘘嘘| 91成人在线精品| 精品少妇一区二区三区视频免付费| 亚洲精品在线电影| 国产精品麻豆一区二区| 精品伊人久久久久7777人| 风间由美一区二区av101| 3d成人动漫网站| 亚洲二区视频在线| 91色九色蝌蚪|