⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 e596. scaling, shearing, translating, and rotating a drawn image.txt

📁 这里面包含了一百多个JAVA源文件
💻 TXT
字号:
See also e575 The Quintessential Drawing Program and e594 Reading an Image or Icon from a File. 
    public void paint(Graphics g) {
        Graphics2D g2d = (Graphics2D) g;
        AffineTransform tx = new AffineTransform();
    
        double scalex = .5;
        double scaley = 1;
        tx.scale(scalex, scaley);
    
        double shiftx = .1;
        double shifty = .3;
        tx.shear(shiftx, shifty);
    
        double x = 50;
        double y = 50;
        tx.translate(x, y);
    
        double radians = -Math.PI/4;
        tx.rotate(radians);
    
        g2d.drawImage(image, tx, this);
    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -