3 Solutions to Rotate Pictures_The Basics
Research on the Image Rotation Effect
Recently, I needed to do the image rotation function in my project, so I did some research. Let’s summarize the support of image rotation in various browsers
1. Image rotation plan
1) CSS3 implements image rotation function: supported browsers are chrome and firefox; opera is not supported.
The specific code is: -moz-transfrom:rotate(90deg);-webkit-ransfrom:rotate(90deg);
The above code means to rotate the image 90 degrees clockwise. In fact, it can be rotated to any degree. However, the only browsers that support CSS3 are chrome, firefox3.6, safari, and ie browsers do not support it. So how to deal with it in IE
? So we have the following solution
2) Rotate through filters in IE
The specific code is: filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
The rotation parameter here can be 0,1,2,3, which means that these numbers are multiplied by 90 Rotation angle. If you want to rotate to any angle under IE, you need to use a matrix transformation filter. In our daily use,
most of us use transformations that are multiples of 90. We won’t discuss arbitrary angles here. But there is still a problem. If the browser is not Internet Explorer and does not support CSS3, then if you realize the rotation of the image, the canvas can also rotate the image.
3) Use canvas to rotate images
Canvas is supported in chrome, firefox, opera and other browsers. It has a drawing API based on JavaScript. First, let’s take a look at how to use canvas JavaScript to rotate images
The code is as follows:
var test = function(){
var canvas = document.getElementById("result");
var oImg = document.getElementById("Img");
canvas.height = 300;
canvas.width = 200;
var context = canvas.getContext("2d");
context.save();
context.translate(200,0);
context.rotate (Math.PI/3);
context.drawImage(oImg, 0, 0, 300, 200);
context.restore();
oImg.style.display = "none";
};
The above code first gets a canvas object, then sets its height and starts drawing. This changes the center point and rotation angle of the canvas, then draws the image into the canvas, stores it, and then
hides the previous image. This method is relatively smooth to implement.
2. Comparison of various solutions
The implementation of css3 will not change the size of the space occupied by the original image, but the filter under IE will change the space occupied by the image. The size of the space.
In fact, IE can also support canvas. You only need to quote a canvas script. This one is provided by Google. But this script is a bit big, more than 20k before compression
I prefer to use filters under IE, and other browsers to use the canvas tag.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to use JavaScript to achieve image rotation effect? In web development, we often encounter scenarios where image rotation effects need to be achieved, such as displaying 360° rotation images of products, achieving image carousel effects, etc. JavaScript is a powerful scripting language that can easily achieve this image rotation effect. The following will introduce a method to achieve image rotation effects based on JavaScript and provide specific code examples. First, we create a simple HTML structure

Using uniapp to implement image rotation function In mobile application development, we often encounter scenarios where images need to be rotated. For example, the angle needs to be adjusted after taking a photo, or an effect similar to the rotation of a camera after taking a photo is achieved. This article will introduce how to use the uniapp framework to implement the image rotation function and provide specific code examples. uniapp is a cross-platform development framework based on Vue.js, which can simultaneously develop and publish applications for iOS, Android, H5 and other platforms. Implemented in uniapp

To implement the picture rotation effect in WeChat Mini Program, specific code examples are required. WeChat Mini Program is a lightweight application that provides users with rich functions and a good user experience. In mini programs, developers can use various components and APIs to achieve various effects. Among them, the picture rotation effect is a common animation effect that can add interest and visual effects to the mini program. To achieve image rotation effects in WeChat mini programs, you need to use the animation API provided by the mini program. The following is a specific code example that shows how to

How to implement image rotation using PHP and GD libraries Image rotation is a common image processing requirement. By rotating images, you can achieve some special effects or meet user needs. In PHP, you can use the GD library to implement the image rotation function. This article will introduce how to use PHP and the GD library to implement image rotation, with code examples. First, make sure your PHP environment has the GD library extension installed. Enter php-m on the command line to check if there is a gd module. If not, you need to install it first. Here is a simple

With the rapid development of the mobile Internet, more and more websites and applications are beginning to use Vue.js for mobile development. However, during mobile development, we often encounter the problem of image rotation. Image rotation means that when a user takes a photo on a mobile device, due to the change in device orientation, the angle of the photo displayed on the page is inconsistent with the actual shooting angle. To solve the problem of image rotation, you first need to understand the reason why the image is rotated. When a user takes a photo on a mobile device, the device automatically adds some metadata to the photo.

With the development of the Internet, image processing has become more and more common. In Java development, it is often necessary to deal with the rotation and scaling of images. How to optimize the performance of these operations has become a concern for developers. This article will discuss how to optimize the performance of image rotation and scaling in Java development. First, let's understand the principles of image rotation and scaling. Image rotation refers to rotating the image by a certain angle counterclockwise or clockwise according to the rotation center. Image scaling refers to reducing or enlarging the image by changing its size. Open in Java

Golang's method of rotating and flipping images. In image processing, it is often necessary to rotate and flip images. This article will introduce how to use Golang to rotate and flip images, and provide corresponding code examples. First, we need to import the image and image/draw packages: import("image" "image/draw") Next, we define a function

How to use php and Imagick to achieve image rotation. Image rotation is a common requirement in web development. It can be used to change the orientation of the image or create image rotation effects. In PHP development, you can use the Imagick library to implement the image rotation function. This article will introduce how to use php and Imagick to achieve image rotation, and provide code examples for reference. Imagick is a powerful image processing extension that can perform various operations on images in PHP, including rotation, cropping, and size.
