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.
cronapp-cordova-plugin-ratio-crop
Advanced tools
Take or select picture, crops images with aspect ratio and get base64.
$ ionic cordova plugin add cordova-plugin-camera
$ npm install --save @ionic-native/camera
$ ionic cordova plugin add cordova-plugin-ratio-crop
$ npm install --save ionic-cordova-plugin-ratio-crop
import { RatioCrop } from 'ionic-cordova-plugin-ratio-crop';
import { Camera } from '@ionic-native/camera';
...
@NgModule({
declarations: [
MyApp
],
imports: [
...
],
bootstrap: [IonicApp],
entryComponents: [
MyApp
],
providers: [
...
Camera,
RatioCrop,
...
]
})
export class AppModule { }
import { Camera } from '@ionic-native/camera';
import { RatioCrop, RatioCropOptions } from 'ionic-cordova-plugin-ratio-crop';
...
private cropOptions: RatioCropOptions = {
quality: 75,
targetWidth: 1080,
targetHeight: 1080,
widthRatio: -1,
heightRatio: -1
};
...
constructor(
private camera: Camera,
private crop: RatioCrop) { }
...
takePicture() {
return this.camera.getPicture({
destinationType: this.camera.DestinationType.FILE_URI,
encodingType: this.camera.EncodingType.JPEG,
mediaType: this.camera.MediaType.PICTURE,
sourceType: this.camera.PictureSourceType.CAMERA,
allowEdit: false,
correctOrientation: true
})
.then((fileUri) => {
return this.crop.ratioCrop(fileUri, this.cropOptions);
})
.then((path) => {
return this.encodeToBase64(path);
})
}
selectPicture() {
return this.camera.getPicture({
allowEdit: false,
sourceType: this.camera.PictureSourceType.PHOTOLIBRARY,
mediaType: this.camera.MediaType.PICTURE,
destinationType: this.camera.DestinationType.FILE_URI
})
.then((fileUri) => {
return this.crop.ratioCrop(fileUri, this.cropOptions);
})
.then((path) => {
return this.encodeToBase64(path);
})
}
encodeToBase64(src) {
return new Promise((resolve, reject) => {
let xhr = new XMLHttpRequest();
xhr.onload = function () {
let reader = new FileReader();
reader.onloadend = function () {
resolve(reader.result);
}
reader.readAsDataURL(xhr.response);
};
xhr.open('GET', src);
xhr.responseType = 'blob';
xhr.send();
});
}
"No Image Selected" error on Android 4.4 device. (Camera Plugin + Background Mode Plugin)
FAQs
RatioCrop based on qwerqwermhc/Crop.
The npm package cronapp-cordova-plugin-ratio-crop receives a total of 93 weekly downloads. As such, cronapp-cordova-plugin-ratio-crop popularity was classified as not popular.
We found that cronapp-cordova-plugin-ratio-crop 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
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.