
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
react-native-image-template-editor
Advanced tools
A powerful React Native component for creating and editing image templates with drawing, text, shapes, and image overlays. Features comprehensive error handling, professional vector icons, and extensive customization options. Gallery icon functionality al
A React Native component for creating and editing image templates with drawing, text, shapes, and image overlays.
npm install react-native-image-template-editor
This package requires the following peer dependencies:
{
"react-native-svg": "^15.8.0",
"react-native-view-shot": "^3.8.0",
"react-native-image-picker": "^7.1.2",
}
Install them (if not already installed):
npm install react-native-svg react-native-view-shot react-native-image-picker
❗ Manual Podfile linking is NOT required for React Native 0.60+ (auto-linking supported). Simply run cd ios && pod install && cd .. after installing dependencies.
Add to your android/app/src/main/AndroidManifest.xml:
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA" />
⚠️ Small Improvement (Recommended for 2026 Android)
For modern Android (13+), you may want to replace deprecated storage permissions:
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
<uses-permission android:name="android.permission.CAMERA" />
Because:
WRITE_EXTERNAL_STORAGE is deprecated in Android 13+READ_MEDIA_IMAGES for media accessThen rebuild:
npx react-native run-android
import React from 'react';
import { ImageEditor } from 'react-native-image-template-editor';
const ImageEditorScreen = () => {
const navigation = useNavigation();
const route = useRoute();
const { imageUri, onSave } = route.params as {
imageUri?: string;
onSave: (editedImageUri: string) => void;
};
return <ImageEditor />;
};
import React from 'react';
import { ImageEditor, ImageEditorProps } from 'react-native-image-template-editor';
const MyComponent = () => {
const handleSave = (savedImageUri: string) => {
console.log('Image saved:', savedImageUri);
// Handle saved image
};
return (
<View style={{ flex: 1 }}>
<ImageEditor
imageUri="https://example.com/initial-image.jpg"
onSave={handleSave}
onClose={() => console.log('Editor closed')}
/>
</View>
);
};
const [showEditor, setShowEditor] = useState(false);
const openImageEditor = () => {
setShowEditor(true);
};
return (
<Modal visible={showEditor} animationType="slide">
<ImageEditor
imageUri={selectedImageUri}
onSave={(savedUri) => {
console.log('Image saved:', savedUri);
setShowEditor(false);
}}
onClose={() => setShowEditor(false)}
/>
</Modal>
);
interface ImageEditorProps {
imageUri?: string; // Initial image to load
onSave?: (uri: string) => void; // Save callback function
onClose?: () => void; // Close callback function
}
const customStyles = {
header: {
backgroundColor: '#your-brand-color',
},
canvas: {
borderColor: '#your-accent-color',
},
};
<ImageEditor style={customStyles} />
const editorRef = useRef(null);
// Save programmatically
const saveImage = async () => {
if (editorRef.current) {
const uri = await captureRef(editorRef.current, {
format: 'jpg',
quality: 0.9,
});
console.log('Saved:', uri);
}
};
// Clear canvas
const clearCanvas = () => {
// Clear all layers
};
For issues, feature requests, or contributions:
MIT License - Free for commercial and personal use.
Version: 0.1.4 Last Updated: February 2026
This ImageEditor provides a complete solution for image editing needs in React Native applications with professional error handling and extensive customization options.
Made with [create-react-native-library]
FAQs
A powerful React Native component for creating and editing image templates with drawing, text, shapes, and image overlays. Features comprehensive error handling, professional vector icons, and extensive customization options. Gallery icon functionality al
We found that react-native-image-template-editor demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.