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.
canvas-image-cover
Advanced tools
Cover a canvas with an image given a locked centre point and zoom factor.
Cover a canvas with an image given a locked centre point and zoom factor.
Kind of provides a canvas equivalent of the CSS background-size: cover.
This module is installed via npm:
$ npm install canvas-image-cover
const cover = require('canvas-cover-image');
const Canvas = require('canvas');
const Image = Canvas.Image;
const canvas = new Canvas(640, 480);
const ctx = canvas.getContext('2d');
const img;
fs.readFile(__dirname + '/images/squid.png', function(err, squid){
if (err) throw err;
img = new Image;
img.src = squid;
// to fit the image to the canvas at the best possible size.
cover(img, 0, 0, 200, 200).render(ctx);
// to fit and zoom in by a factor of 2
cover(img, 0, 0, 200, 200).zoom(2).render(ctx);
// to fit and zoom into the top left corner of the image
cover(img, 0, 0, 200, 200).zoom(0, 0).pan(0, 0).render(ctx);
// to pan to the left side and then zoom into the top right corner of that
// left side...
cover(img, 0, 0, 200, 200).pan(0, 0).crop().zoom(2).pan(1, 0);
// and other more complicated things...
});
const cover = require('canvas-image-cover');
cover(img, x, y, width, height);
Provides a mechanism to draw an image in canvas such that it will cover the area provided exactly.
Param | Type | Description |
---|---|---|
img | Canvas.Image | the image to render |
x | number | offset x coordinate on the canvas |
y | number | offset y coordinate on the canvas |
width | number | width to fit to on the canvas |
height | number | height to fit to on the canvas |
All the following functions will return the same Cover
object as the cover()
function so they can be chained together.
cover(img, x, y, width, height).crop();
Doesn't actually crop the input image but does redefine the bounds of the image for the sake of panning. ie. after a crop, the pan cx and cy will be with regard to the currently defined area rather than the whole image or previously cropped area.
cover(img, x, y, width, height).pan(cx, cy);
Change the center point of the image.
Param | Type | Description |
---|---|---|
cx | number | value between 0 and 1 representing the left or right side of the image bounds. The bounds will be the whole image or the defined source area at the time of the last crop(). |
cy | number | value between 0 and 1 representing the top or the bottom of the image bounds. |
cover(img, x, y, width, height).zoom(factor);
Zoom in at the current location.
Param | Type | Description |
---|---|---|
factor | number | how much to zoom in by (>=1). |
cover(img, x, y, width, height).render(ctx);
Render to the provided context.
Param | Type | Description |
---|---|---|
ctx | CanvasRenderingContext2D | canvas context to render to |
Note: The Cover
object returned by all the above functions contains the source x, y, width, height values used to do the rendering so if you only want the numbers and you don't actually need to render to the canvas you can retrieve them from that object.
let { sx, sy, sw, sh } = cover(img, x, y, width, height).zoom(2);
The BSD License
Copyright (c) 2017, Andrew Harris
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
Neither the name of the Andrew Harris nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
FAQs
Cover a canvas with an image given a locked centre point and zoom factor.
We found that canvas-image-cover demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 10 open source maintainers 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.