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.
A helper for manipulating raw image data and rendering it to a canvas.
Install the package.
npm install raw-image --save
Require the module.
var RawImage = require("raw-image");
Note: RawImage needs to run a browser context. You can use something like browserify to bundle RawImage as a dependency. Take a look at the example if you need help with this.
<canvas id="canvas"></canvas>
<script>
var image = new RawImage("image.png");
image.onload = function () {
// Get the dimensions of the image.
image.width;
image.height;
// Get the color of a pixel.
image.get(50, 50);
// Set the color of a pixel.
var white = {
"red": 255,
"green": 255,
"blue": 255,
"alpha": 255
};
image.set(50, 50, white);
// Render the image to a canvas.
var canvas = document.getElementById("canvas");
image.render(canvas);
}
</script>
If you change the image, you'll need to re-render it.
You can change the dimensions of the image by passing a width and/or a height:
new RawImage("image.png", { width: 100, height: 100 });
The aspect ratio of the image is preserved and the image will not exceed 100x100.
The get and set methods will respect the new image dimensions.
## Serialization
Once the image has loaded, you can serialize your image to json:
var image = new RawImage("image.png");
var json;
image.onload = function () {
json = JSON.stringify(image);
};
var clone = RawImage.fromJson(json);
clone.get(50, 50);
Please send a pull request or open an issue.
You should follow me on twitter.
FAQs
A helper for manipulating raw image data and rendering it to a canvas.
The npm package raw-image receives a total of 6 weekly downloads. As such, raw-image popularity was classified as not popular.
We found that raw-image demonstrated a not healthy version release cadence and project activity because the last version was released 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.