Home > Java > javaTutorial > How to Achieve Gradual Image Rotation in Swing?

How to Achieve Gradual Image Rotation in Swing?

Susan Sarandon
Release: 2024-12-03 15:41:12
Original
207 people have browsed it

How to Achieve Gradual Image Rotation in Swing?

How to Rotate an Image Gradually in Swing?

Swing is a graphical user interface library for Java programming language that provides many classes and interfaces for creating user interfaces. One common task in Swing is to rotate an image. This can be done using the AffineTransform class.

To rotate an image gradually in Swing, you need to:

  1. Create an AffineTransform object.
  2. Translate the origin of the transform to the center of the image.
  3. Rotate the transform by the desired angle.
  4. Translate the origin of the transform back to the original position.
  5. Apply the transform to the image.

Here is an example code that shows how to rotate an image gradually in Swing:

import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.awt.geom.AffineTransform;

public class RotateImage {

    public static void main(String[] args) {
        // Create an image.
        BufferedImage image = new BufferedImage(200, 200, BufferedImage.TYPE_INT_ARGB);

        // Create an AffineTransform object.
        AffineTransform transform = new AffineTransform();

        // Translate the origin of the transform to the center of the image.
        transform.translate(image.getWidth() / 2, image.getHeight() / 2);

        // Rotate the transform by the desired angle.
        transform.rotate(Math.toRadians(45));

        // Translate the origin of the transform back to the original position.
        transform.translate(-image.getWidth() / 2, -image.getHeight() / 2);

        // Apply the transform to the image.
        Graphics2D g2d = image.createGraphics();
        g2d.drawImage(image, transform, null);
        g2d.dispose();

        // Display the transformed image.
        JFrame frame = new JFrame();
        frame.add(new JLabel(new ImageIcon(image)));
        frame.pack();
        frame.setVisible(true);
    }
}
Copy after login

This code will create a new image and rotate it by 45 degrees. The image will then be displayed in a JFrame.

The above is the detailed content of How to Achieve Gradual Image Rotation in Swing?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template