Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
blurred-image-frame
Advanced tools
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.
Check out how the functionality works! ==> DEMO.
Install blurred-image-frame
with npm:
npm install blurred-image-frame
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 fillImageWithBlur(e, canvasId) {
// Get the canvas and its 2D rendering context
const canvas = document.getElementById(canvasId);
const ctx = canvas.getContext('2d');
// Create a link element for downloading the blurred image
const downloadLink = document.createElement('a');
// Create a new image object
const image = new Image();
// Set the source of the image to the selected file
image.src = URL.createObjectURL(e.target.files[0]);
// Event handler for when the image is loaded
image.onload = function () {
// Calculate aspect ratios for the canvas and the loaded image
const aspectRatio = canvas.width / canvas.height;
const imageAspectRatio = image.width / image.height;
// Calculate new width and height for the image to fit within the canvas while maintaining aspect ratio
let newWidth, newHeight;
if (imageAspectRatio > aspectRatio) {
newWidth = canvas.width;
newHeight = canvas.width / imageAspectRatio;
} else {
newWidth = canvas.height * imageAspectRatio;
newHeight = canvas.height;
}
// Calculate offsets to center the image within the canvas
const xOffset = (canvas.width - newWidth) / 2;
const yOffset = (canvas.height - newHeight) / 2;
// Clear the canvas
ctx.clearRect(0, 0, canvas.width, canvas.height);
// Apply a blur filter to the context and draw the image with a margin
ctx.filter = 'blur(50px)';
ctx.drawImage(image, -100, -100, canvas.width + 200, canvas.height + 200);
// Reset the filter and draw the image at the calculated position and size
ctx.filter = 'none';
ctx.drawImage(image, xOffset, yOffset, newWidth, newHeight);
// Extract original file extension and filename without extension
const originalExtension = e.target.files[0].name.split('.').pop();
const fileNameWithoutExtension = e.target.files[0].name.replace(/\.[^/.]+$/, '');
// Set the download link attributes to download the blurred image
downloadLink.href = canvas.toDataURL(`image/${originalExtension}`);
downloadLink.download = `${fileNameWithoutExtension}_blurred.${originalExtension}`;
// Append the download link to the body, trigger a click, and remove it
document.body.appendChild(downloadLink);
downloadLink.click();
document.body.removeChild(downloadLink);
};
}
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.
Original image before applying any modifications.
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.
This project is licensed under the MIT License. You can find more details in the LICENSE file.
FAQs
Avoid cropping an image to fit a specific canvas size.
The npm package blurred-image-frame receives a total of 1 weekly downloads. As such, blurred-image-frame popularity was classified as not popular.
We found that blurred-image-frame demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.