Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
blurred-image-frame
Advanced tools
A function that automatically adds a blur section to no-crop images
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.
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.
To utilize this function, it is essential to first import
the fill-image-blur.js JavaScript
file 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.
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 20 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.