2009-09-22 178 views
2

我有一個JPanel我正在繪製,我試圖獲得它,以便您可以使用鼠標滾輪通過修改變量「縮放」進出規模。現在會發生什麼,您可以放大或縮小,但是當您放大時,所有繪圖會向右和向下移動,然後在縮小時向後並向左移動。Java Graphics2D平移和縮放/翻譯和縮放

我想讓它,使它調整,如果你是在JPanel的中心在點放大,但我無法弄清楚如何計算正確的偏移通過翻譯...

任何人瞭解如何做到這一點,或者更好地實現這種整體平移和縮放能力?

我基本上繪製了一堆座標,從一個系統,其中0,0是左下角,來到下跌邊界之間:

xMin = 661208 
xMax = 662618 

yMin = 4291657 
yMax = 4293285 

@Override 
protected void paintComponent(Graphics g) { 
    super.paintComponent(g); 

    Graphics2D g2 = (Graphics2D) g; 

    double scale = details.getScale(); 
    double xOffset = details.getxOffset(); 
    double yOffset = details.getyOffset(); 

    g2.scale(scale, -scale); 

    // Dividing offset by scale makes panning 1:1 with the cursor still. yMax to account for the 
    // fact we needed to flip around the y axis to make it right-side up. 
    g2.translate((-xMin + xOffset/scale), (-yMax + yOffset/scale)); 

    // Code to draw stuff goes here. It uses coordinates between xMin-xMax and yMin-yMax to draw. 
    . 
    . 
    . 
} 
+0

此問題可能會幫助你[http://stackoverflow.com/questions/690871/affinetransform-scaling-a-shape-from-its-center](http://stackoverflow.com/questions/690871/affinetransform -scaling-A-形狀從 - 其中心) – Pierre 2009-09-22 08:03:30

回答

-1

這裏是與車輪的例子:

public class GraphicsOnly extends JPanel implements MouseWheelListener { 
     Shape[] shapes; 
     Dimension size; 
     double scale = 1.0; 
     private static int source = 100; 
     public GraphicsOnly() { 
     addMouseWheelListener(this); 
     size = new Dimension(10,10); 
     setBackground(new Color(240,200,200)); 
    } 



    protected void paintComponent(Graphics g) { 
     super.paintComponent(g); 
     Graphics2D g2 = (Graphics2D)g; 
     g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, 
          RenderingHints.VALUE_ANTIALIAS_ON); 
     if(shapes == null) initShapes(); 
     // Keep shapes centered on panel. 
     double x = (getWidth() - scale*size.width)/2; 
     double y = (getHeight() - scale*size.height)/2; 
     AffineTransform at = AffineTransform.getTranslateInstance(x, y); 
     at.scale(scale, scale); 
     g2.setPaint(Color.blue); 
     g2.draw(at.createTransformedShape(shapes[0])); 
     g2.setPaint(Color.green.darker()); 
     g2.draw(at.createTransformedShape(shapes[1])); 
     g2.setPaint(new Color(240,240,200)); 
     g2.fill(at.createTransformedShape(shapes[2])); 
     g2.setPaint(Color.red); 
     g2.draw(at.createTransformedShape(shapes[2])); 
    } 

    public Dimension getPreferredSize() { 
     int w = (int)(scale*size.width); 
     int h = (int)(scale*size.height); 
     return new Dimension(w, h); 
    } 

    private void initShapes() { 
     shapes = new Shape[3]; 
     int w = getWidth(); 
     int h = getHeight(); 
     shapes[0] = new Rectangle2D.Double(w/16, h/16, w*7/8, h*7/8); 
     shapes[1] = new Line2D.Double(w/16, h*15/16, w*15/16, h/16); 
     shapes[2] = new Ellipse2D.Double(w/4, h/4, w/2, h/2); 
     size.width = w; 
     size.height = h; 
    } 


    public static void main(String[] args) { 
     GraphicsOnly app = new GraphicsOnly(); 
     JFrame f = new JFrame(); 
     f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 
     f.getContentPane().add(new JScrollPane(app)); 
     f.setSize(400, 400); 
     f.setLocation(200,200); 
     f.setVisible(true); 
    } 

    @Override 
    public void mouseWheelMoved(MouseWheelEvent e) { 
     // TODO Auto-generated method stub 
     if(e.getWheelRotation() >0){ 
      source = source-e.getScrollAmount(); 
     }else{ 
      source = source+e.getScrollAmount(); 
     } 
     scale = source/100.0; 
     System.out.println(scale); 
     repaint(); 
     revalidate(); 
    } 
}