We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm build an Expo app and use react-native-image-marker to mark the photo taking time on the photo and then the below error happens
const take = async () => { if (cameraRef && cameraRef.current) { setProcessing(true) const photo = await cameraRef.current.takePictureAsync(cameraOptions) console.log('--> take photo: ', photo) try { const markedImageURI = await Marker.markText({ backgroundImage: { src: photo.uri, }, watermarkTexts: [ { text: "text", positionOptions: { position: Position.center, }, style: { color: 'white', fontSize: 20, fontName: 'Arial', } } ], }) } catch (e: any) { console.log('--> Photo taking error: ', e) } setTempPhoto(photo) } setProcessing(false) }
--> The error console.log result: [Error: For input string: "eehhiitt" under radix 16]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm build an Expo app and use react-native-image-marker to mark the photo taking time on the photo and then the below error happens
--> The error console.log result: [Error: For input string: "eehhiitt" under radix 16]
The text was updated successfully, but these errors were encountered: