JavaScript to achieve click image flip effect

JavaScript to achieve click image flip effect

I was recently working on a project about face collection, and when I was writing the front-end module, I encountered a problem. When customers upload photos or take photos and upload them directly, some pictures may be flipped 90 degrees. So, we need to give customers a button so that they can rotate the pictures themselves. The effect is roughly as follows

Figure 1. Normal image upload

Figure 2. The image is rotated left

Figure 3. Image rotated right

The above is a picture rotation function

Now let’s start with the code part.

Here I have adopted a method, and my current image format is base64. It doesn’t matter if you encounter other formats, because our final effect still needs to be converted to an image object to achieve it.

/**
     * Image rotation* @param direction The direction of rotation*/
    rotate (direction) {
      const img = new Image()
      // The idea here is to map the image to a drawing board and then redraw the image, so we need to create a canvas object to act as our drawing board const canvas = document.createElement('canvas')
      // base64 convert image object img.src = this.uploadImage
      // Remember to convert base64 into an image object before performing other operations. The author has made a mistake here. The onload method loads the image before performing other operations. If the image is a file path, the cross-domain call effect is more obvious.img.onload = () => {
        // The height and width of img cannot be obtained after the img element is hidden, otherwise an error will occur const height = img.height
        const width = img.width
        // The rotation angle is in radians as a parameter const ctx = canvas.getContext('2d')
        if (direction === 'right') {
          canvas.width = height
          canvas.height = width
          ctx.rotate(90 * Math.PI / 180)
          ctx.drawImage(img, 0, 0, width, -height)
        } else {
          canvas.width = height
          canvas.height = width
          ctx.rotate(-90 * Math.PI / 180)
          ctx.drawImage(img, 0, 0, -width, height)
        }
        // Convert the rotated image back to base64
        this.uploadImage = this.getBase64Image(img, canvas)
      }
    },
    /**
    * Convert the image file to base64
    */
    getBase64Image (img, canvas) {
      const ctx = canvas.getContext('2d')
      ctx.drawImage(img, 0, 0, img.width, img.height)
      const ext = img.src.substring(img.src.lastIndexOf('.') + 1).toLowerCase()
      return canvas.toDataURL('image/' + ext)
    }

Note: If the image is obtained from a cross-domain, there may be problems converting canvas back to base64. In this case, you may need to enable a proxy to obtain the image.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • JS implements the method of following the mouse to flip the picture in three dimensions
  • How to implement simple image flipping with JavaScript
  • js method to achieve button control 360 degree flip effect of picture
  • JS control image flip sample code (compatible with firefox, ie, chrome)

<<:  Mysql example of querying all lower-level multi-level sub-departments based on a certain department ID

>>:  Start nginxssl configuration based on docker

Recommend

JavaScript navigator.userAgent obtains browser information case explanation

The browser is probably the most familiar tool fo...

Detailed explanation of the fish school algorithm in CocosCreator game

Preface I recently wanted to learn CocosCreator, ...

CSS and CSS3 flexible box model to achieve element width (height) adaptation

1. CSS realizes fixed width on the left and adapt...

Steps to install superset under win10 system

Superset is a lightweight self-service BI framewo...

Comparison of CSS shadow effects: drop-Shadow and box-Shadow

Drop-shadow and box-shadow are both CSS propertie...

Understanding flex-grow, flex-shrink, flex-basis and nine-grid layout

1. flex-grow, flex-shrink, flex-basis properties ...

Detailed discussion on the issue of mysqldump data export

1. An error (1064) is reported when using mysqldu...

MySQL configuration master-slave server (one master and multiple slaves)

Table of contents Ideas Host Configuration Modify...

How to quickly query 10 million records in Mysql

Table of contents Normal paging query How to opti...

Let's talk about the difference between containers and images in Docker

What is a mirror? An image can be seen as a file ...

5 Reasons Why Responsive Web Design Isn’t Worth It

This article is from Tom Ewer's Managewp blog,...

Implementation of the Pycharm installation tutorial on Ubuntu 18.04

Method 1: Download Pycharm and install Download a...

How to install MySQL 8.0 database on M1 chip (picture and text)

1. Download First of all, I would like to recomme...

Some basic instructions of docker

Table of contents Some basic instructions 1. Chec...