Created
May 28, 2022 07:05
-
-
Save defkode/35fbb44188ad524fca79a828e271bc87 to your computer and use it in GitHub Desktop.
Copy image from clipboard and display on canvas
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// app.js | |
import React from 'react'; | |
class App extends React.Component { | |
componentDidMount() { | |
const retrieveImageFromClipboardAsBlob = (pasteEvent, callback) => { | |
if(pasteEvent.clipboardData === false){ | |
if(typeof(callback) === "function"){ | |
callback(undefined); | |
} | |
}; | |
var items = pasteEvent.clipboardData.items; | |
if(items === undefined){ | |
if(typeof(callback) === "function"){ | |
callback(undefined); | |
} | |
}; | |
for (var i = 0; i < items.length; i++) { | |
// Skip content if not image | |
if (items[i].type.indexOf("image") === -1) continue; | |
// Retrieve image on clipboard as blob | |
var blob = items[i].getAsFile(); | |
if(typeof(callback) === "function"){ | |
callback(blob); | |
} | |
} | |
} | |
window.addEventListener("paste", function(e){ | |
// Handle the event | |
retrieveImageFromClipboardAsBlob(e, (imageBlob) => { | |
// If there's an image, display it in the canvas | |
if(imageBlob){ | |
var canvas = document.getElementById("canvas"); | |
var ctx = canvas.getContext('2d'); | |
// Create an image to render the blob on the canvas | |
var img = new Image(); | |
// Once the image loads, render the img on the canvas | |
img.onload = function(){ | |
// Update dimensions of the canvas with the dimensions of the image | |
canvas.width = this.width; | |
canvas.height = this.height; | |
// Draw the image | |
ctx.drawImage(img, 0, 0); | |
}; | |
// Crossbrowser support for URL | |
var URLObj = window.URL || window.webkitURL; | |
// Creates a DOMString containing a URL representing the object given in the parameter | |
// namely the original Blob | |
img.src = URLObj.createObjectURL(imageBlob); | |
} | |
}); | |
}, false); | |
} | |
render() { | |
return( | |
<div> | |
<p>paste image from clipboard</p> | |
<canvas id='canvas' style={{border: '1px solid'}} /> | |
</div> | |
); | |
} | |
} | |
export default App; | |
// index.js | |
ReactDOM.render( | |
<React.StrictMode> | |
<App name='sprite-extractor' /> | |
</React.StrictMode>, | |
document.getElementById('root') | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment