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.
expo-image-manipulator-view
Advanced tools
Crop, rotate and flip images without detach your expo project!
This repository was forked from brunon80/expo-image-crop(it is probably no longer maintained). The changes are as follows:
All changes can be found here.
Multi platform 🚀
Expo.ImageManipulator
is only a API without a UI, so you have to build your own UI on top of it, or choose detach your project to use third party linked packages, witch is no so good because a pure javascript Expo project is marvelous!No more flickering while resizing image mask!
Compatible with Expo SDK 44
Support typescript
yarn add expo-image-manipulator-view
import React from 'react'
import { Dimensions, Button, ImageBackground } from 'react-native'
import { ImageManipulatorView } from 'expo-image-manipulator-view'
export default class App extends React.Component {
state = {
isVisible: false,
uri: 'https://i.pinimg.com/originals/39/42/a1/3942a180299d5b9587c2aa8e09d91ecf.jpg',
}
onToggleModal = () => {
const { isVisible } = this.state
this.setState({ isVisible: !isVisible })
}
render() {
const { uri, isVisible } = this.state
const { width, height } = Dimensions.get('window')
return (
<ImageBackground
resizeMode="contain"
style={{
justifyContent: 'center', padding: 20, alignItems: 'center', height, width, backgroundColor: 'black',
}}
source={{ uri }}
>
<Button title="Open Image Editor" onPress={() => this.setState({ isVisible: true })} />
<ImageManipulatorView
photo={{ uri }}
isVisible={isVisible}
onPictureChoosed={({ uri: uriM }) => this.setState({ uri: uriM })}
onToggleModal={this.onToggleModal}
/>
</ImageBackground>
)
}
}
Props | Type | Default | Description |
---|---|---|---|
isVisible | boolean | false | Show or hide modal with image manipulator UI |
onBeforePictureChoosed | function | Callback before done. You must return boolean. If you return false, it will stop. | |
onPictureChoosed | function | Callback where is passed image edited as parameter | |
photo | object | { uri: string } | uri of image to be edited |
btnTexts | object | { crop: string, done: string, processing: string} | name for crop, done and processing texts |
onToggleModal | function | Callback called when modal is dismissed | |
borderColor | string | #a4a4a4 | Color for crop mask border |
allowRotate | boolean | true | Show rotate option |
allowFlip | boolean | true | Show flip option |
saveOptions | object | { compress: number, format: string, base64: boolean} | A map defining how modified image should be saved |
fixedMask | object | { width: number, height: number } | Width and height fixed mask |
ratio | object | { width: number, height: number } | Width and height cropping ratio |
icons | object | { crop: ReactNode, back: ReactNode, processing: ReactNode } | Some icons can be changed |
{
uri: string,
base64: string | undefined, // undefined if base64 is false on saveOptions prop
width: number,
height: number,
cropped: boolean // Whether cropped or not
}
ImageManipulator
FAQs
Crop, rotate and flip images without detach your expo project!
The npm package expo-image-manipulator-view receives a total of 2 weekly downloads. As such, expo-image-manipulator-view popularity was classified as not popular.
We found that expo-image-manipulator-view 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.