旋转graphics2D

时间:2011-12-08 21:15:02

标签: java swing rotation graphics2d

我正在尝试旋转图形,但由于某种原因它无法正常工作。我在其他论坛上做过很多研究,但似乎无法解决这个问题。

所以,这是我的计划的一部分。

  1. 收录文件。
  2. 创建缓冲图像
  3. bufferedimage.createGraohics();
  4. 创建graphics2D

    在窗格中创建Jlabel,显示缓冲的图像。 然后我有一种方法在图像上写文字,以及一种保存图像的方法。 如果我写文字,然后保存,那很好。 这用:

    graphic2D.drawString("Hello, this is my test.",10,10);
    

    我也看到这个更新JLabel,所以我可以看到图像上的文字。

    但是,如果我创建一个方法:

    graphics2D.rotate(45);
    

    我完全没有看到任何改变。

    有谁知道为什么?

    这是我的方法:

    public void actionPerformed(ActionEvent e){     
        graphic2D.rotate(4.5);
        saveImage();
    }
    

    谢谢,

        import java.io.File;
    import java.awt.image.BufferedImage;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.imageio.*;
    import java.awt.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    
    class EditorView implements ActionListener, ChangeListener{
    
        JFrame editorFrame;
        JPanel container = new JPanel();
        JPanel toolbox = new JPanel();
        JPanel editorPanel = new JPanel();
        JScrollPane editorScrollPane;
        File imageFile;
        BufferedImage bi;
        ImageIcon ii;
        Graphics2D graphic2D;
        JSlider slider = new JSlider(JSlider.HORIZONTAL, 0, 10, 5);
    
        public EditorView(File file){
            this.imageFile = file;
    
            try{
            bi = ImageIO.read(imageFile);
            }catch(Exception e){}
    
            graphic2D = bi.createGraphics();
    
            createAndShowGUI();
    
        }
    
    
        void createAndShowGUI(){
    
            editorFrame = new JFrame("Editor");
            editorFrame.setSize(1000,650);  
            container.setLayout(new BoxLayout(container,BoxLayout.Y_AXIS));
            editorFrame.add(container);
            toolbox.setMaximumSize(new Dimension(Integer.MAX_VALUE,50));
            toolbox.setPreferredSize(new Dimension(Integer.MAX_VALUE,50));
            toolbox.setLayout(new GridLayout(2,10));
            JButton rotateLeftBtn = new JButton("Rotate Left");
            toolbox.add(rotateLeftBtn);
            rotateLeftBtn.addActionListener(this);
            toolbox.add(new JButton("Save"));
            toolbox.add(new JButton("Close"));
            toolbox.add(new JButton("Freeform"));
            toolbox.add(new JButton("Colour"));
            toolbox.add(new JButton("Text"));
            toolbox.add(new JButton("Square"));
            toolbox.add(new JButton("Circle"));
            toolbox.add(new JButton("Elipse"));
            toolbox.add(new JButton("Rotate Right"));
    
    
            slider.addChangeListener(this);
            toolbox.add(slider);
    
    
            container.add(toolbox);
    
            editorScrollPane = new JScrollPane(new JLabel(new ImageIcon(bi)));
    
            container.add(editorScrollPane);
            editorFrame.setVisible(true);
            editorFrame.validate();
            container.validate();
            editorPanel.validate();
    
            drawLabel();
            //editorScrollPane.repaint();
        }
    
        void drawLabel(){
            graphic2D.rotate(1);
            graphic2D.drawString("Hello, this is my test.",10,10);
    
        }
    
        void drawCircle(){
    
        }
    
        void saveImage(){
    
            try{
            ImageIO.write(bi,getFileExtension(), imageFile);
            }catch(Exception e){}
        }
    
        String getFileExtension(){
            int positionOfDot = imageFile.getName().lastIndexOf(".");
            String returner = null;
            if( positionOfDot !=-1){
                returner = imageFile.getName().substring((positionOfDot+1), imageFile.getName().length());
            }
            System.out.println(returner);
            return returner;
        }
    
        public void actionPerformed(ActionEvent e){ 
    
            graphic2D.rotate(1);
            saveImage();
    
        }
    
        public void stateChanged(ChangeEvent c){
            graphic2D.scale(slider.getValue()/5, slider.getValue()/5);
            editorScrollPane.repaint();
    
        }
    
    }
    

2 个答案:

答案 0 :(得分:4)

graphics2D.rotate调用会转换后续渲染,因此您需要在渲染文本之前重新绘制并放置旋转调用。

另请参阅:Javadocs

此外,该方法要求输入为弧度。

答案 1 :(得分:1)

对于

graphics2D.rotate();

方法,试试

graphics2D.rotate(Math.toRadians(45));