Blurred Image Frame
This repository houses a user-friendly JavaScript function named fillImageWithBlur
. The purpose of this function is to
assist users who want to avoid cropping an image to fit a specific canvas size. Instead, it dynamically adds a subtle
blur to the edges of the image, ensuring it seamlessly fits the desired dimensions without sacrificing content.
Demo
Check out how the functionality works! ==> DEMO.
Installation
Install blurred-image-frame
with npm:
npm install blurred-image-frame
Usage
To utilize this function, it is essential to first import
the fill-image-blur into your project. After importing, integrate the provided JavaScript code into your project. Call
the fillImageWithBlur
function by passing an event object e
and the ID of the canvas element, canvasId
. The
function will take care of image processing, apply the blur effect, and facilitate the download of the seamlessly fitted
image.
<input type="file" onchange="fillImageWithBlur(event, 'yourCanvasId')">
<canvas hidden id="yourCanvasId" width="1024" height="576"></canvas>
The following example shows the fillImageWithBlur
function using two images to demonstrate the transformation before and after applying the function.
Function Overview
function fillImageWithBlur(e, canvasId) {
const canvas = document.getElementById(canvasId);
const ctx = canvas.getContext('2d');
const downloadLink = document.createElement('a');
const image = new Image();
image.src = URL.createObjectURL(e.target.files[0]);
image.onload = function () {
const aspectRatio = canvas.width / canvas.height;
const imageAspectRatio = image.width / image.height;
let newWidth, newHeight;
if (imageAspectRatio > aspectRatio) {
newWidth = canvas.width;
newHeight = canvas.width / imageAspectRatio;
} else {
newWidth = canvas.height * imageAspectRatio;
newHeight = canvas.height;
}
const xOffset = (canvas.width - newWidth) / 2;
const yOffset = (canvas.height - newHeight) / 2;
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.filter = 'blur(50px)';
ctx.drawImage(image, -100, -100, canvas.width + 200, canvas.height + 200);
ctx.filter = 'none';
ctx.drawImage(image, xOffset, yOffset, newWidth, newHeight);
const originalExtension = e.target.files[0].name.split('.').pop();
const fileNameWithoutExtension = e.target.files[0].name.replace(/\.[^/.]+$/, '');
downloadLink.href = canvas.toDataURL(`image/${originalExtension}`);
downloadLink.download = `${fileNameWithoutExtension}_blurred.${originalExtension}`;
document.body.appendChild(downloadLink);
downloadLink.click();
document.body.removeChild(downloadLink);
};
}
How It Helps
This function simplifies the process for users who wish to maintain the entirety of their images without resorting to
cropping. By intelligently incorporating a subtle blur effect around the edges, the resulting image seamlessly fits the
desired canvas dimensions, providing an aesthetically pleasing solution. The user can easily integrate this
functionality into their projects to achieve a harmonious balance between image size and content preservation.
Before
Original image before applying any modifications.
After
Image after applying the fillImageWithBlur
function to fit a specific canvas size without cropping.
Feel free to tailor the HTML elements and canvas dimensions in accordance with the specific requirements of your
project. Furthermore, you are encouraged to formally customize the styling, integrate supplementary features, or make
any necessary adjustments to align with the distinctive needs and objectives of your project.
License
This project is licensed under the MIT License. You can find more details in the LICENSE file.