Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
ngx-default-image
Advanced tools
Angular library which provides a way prevend image rendering when the image loading failed with custom replacement image and provide extracted meta info from the image.
Angular library which provides a way prevend image rendering when the image loading failed with custom replacement image.
Get extracted meta info from the image.
Import the module on your app.module.ts
file as follow.
import { NgxDefaultImageModule} from "ngx-default-image";
imports: [
...
NgxDefaultImageModule
...
],
import { META } from "ngx-default-image";
<img src="'https://dummyimage.com/600x400/fff/000'"
[imageURL]="imageURL" NgxDefaultImage />
Emit the function in order to get meta info as follows.
<img src="'https://dummyimage.com/600x400/fff/000'"
[imageURL]="imageURL" (imageMetaInfo)="imageMetaInfo($event)"
NgxDefaultImage />
import { META } from "ngx-default-image";
public imageMeta: META;
public imageURL = "https://cdn-icons-png.flaticon.com/128/1829/1829412.png"; // Fallback URL
public imageMetaInfo(event: META) {
this.imageMeta = event;
consoloe.log(this.imageMeta);
}
<div *ngFor="let img of images:let index = index;">
<img src="'https://dummyimage.com/600x400/fff/000'"
[imageURL]="imageURL"
(imageMetaInfo)="imageMetaInfo($event, index)"
NgxDefaultImage />
</div>
public imageMetaInfo(event: META, index: number) {
consoloe.log(`Meta info of image at ${index} is ${event}.`);
}
The image will return the meta info as follows:
public imageMetaInfo(event: META) {
this.imageMeta = event;
}
Properties | Data Type |
---|---|
isValidImage | Boolean |
aspectRatio | string |
x | number |
y | number |
rwidth | number |
rheight | number |
renderTime | string |
top | number |
right | number |
bottom | number |
left | number |
datedOn | any |
width | number |
height | number |
src | string |
esrc | string |
alt | string |
crossorigin | string |
To use this package as a service npm i ngx-default-image
install this on the root angular project .
Note: Don't forget to run this commend
npm i ngx-default-image
on root folder or else it will throw error.
Then import the module as follow on imports array
NgxDefaultImageModule
FAQs
Angular library which provides a way prevend image rendering when the image loading failed with custom replacement image and provide extracted meta info from the image.
We found that ngx-default-image demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.