我想旋轉圖形,但由於某種原因它不起作用。我在其他論壇上做了大量的研究,但似乎無法解決這個問題。旋轉圖形2D
所以,這是我的程序作品。
- 收集文件。
- 創建緩衝的圖像
- 從
bufferedimage.createGraohics();
甲Jlabel
是在窗格中,其示出了緩衝的圖像作出的Graphics2D創建。 然後我有一個方法來在圖像上寫文本,並有一種方法來保存圖像。 如果我寫文本,然後保存,工作正常。 這使用:
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();
}
}
你能請張貼整個上下文(即,無論是'rotate'呼叫和'drawString')? –