React Native Image Load Error - react-native

I'm trying to load these specific images using the following uri: https://image.tmdb.org/t/p/w500/zkXnKIwX5pYorKJp2fjFSfNyKT0.jpg
https://image.tmdb.org/t/p/w500/bbxtz5V0vvnTDA2qWbiiRC77Ok9.jpg
The onError event throws the following error:
Error decoding image data
The images loads correctly in safari and chrome. Any ideas what could be wrong? How can I debug this furthur? Other Images are loading correctly, but these specific images throws these error.
RN 0.41
Platform: iOS

download the images and use them in requie("//address of the image in your project")

Related

Glide does not display a picture with logs: Load failed for with size [-2147483648x-2147483648]

Uploading images with Glide
But some pictures are not showing.
Looked at the logs:
Load failed for with size [-2147483648x-2147483648]
class com.bumptech.glide.load.engine.GlideException: Failed to load resource
googled, many recommend to prescribe in the manifest
android:usesCleartextTraffic="true"
but it didn't help me
everything is fine with the url of the image, I checked it

Data file not found

I am making react native app with tesseract ocr. When I add image using react native image picker our gives me error:
OCR Error: [Error: Data file not found at /storage/emulated/0/com.textrecognition/tessdata/eng.traineddata]
But I have created folder assets/tessdata in android/app/src/main/assets/tessdata and there I put my file, what am I doing wrong?

react native expo how to require an image?

I'm learning react native expo
I want to require an image from assets/images
The image I want to require is noti.png
I got this error
What am i missing?
You are passing the location of the image incorrectly. as you can see in the error: the module .. could not be found
To fix it, check the location of current file you are calling that image then go back to the exact location and call it. Also If you are using IDE they recommend you the location.
Update:
require('../assets/images/noti.png'

Logo not running in my emulator and devices

11:01:29: Failed building JavaScript bundle
11:01:29: Unable to resolve ./app/img/grangologo.png" from ".//App.js: could not resolve/home/gokul/React/Grango/app/img/grangologo.png' as a file nor as a folder","name":"UnableToResolveError","type":"UnableToResolveError","errors":[{}]},"type":"bundling_error"}"
you'r path to the image is wrong, try to use some console.log's to check yourself if the image was imported.
(p.s you could avoid all of it by using proper editor)

URL property for webview not working for Android,but works fine for IOS

I am creating webview in Titanium appcelerator & trying to access a "remote URL" from server. I can able to get "pdf" contents for that URL in IOS devices, but in Android i'm getting the following error.
"Enterprise Container Manager" - Policy service is not ready.
I'm getting same error in Android even if i hardcode that URL inside webview.Is there is any limitation in Android to get PDF file in webview?
And i'm also getting following error in log;
11-13 19:43:20.145: E/webview(10765): registerForStylusPenEvent onAttachedToWindow
11-13 19:43:20.145: E/webview(10765): registerForStylusPenEvent START
11-13 19:43:20.145: E/webview(10765): registerForStylusPenEvent END
11-13 19:43:20.900: E/webview(10765): removeForStylusPenEvent onDetachedFromWindow
11-13 19:43:20.900: E/webview(10765): removeForStylusPenEvent START
11-13 19:43:20.900: E/webview(10765): removeForStylusPenEvent END
11-13 19:43:21.085: E/Sensors(2294): Acc old sensor_state 1, new sensor_state : 0 en : 0
iOS has a file QuickView embedded in the webview for viewing PDF's and other documents, Android does not have this, you cannot render PDF's with a vanilla webview in android.
To support PDF viewing, you can use Intents, or get a module from the marketplace, or make your own module wrapping a library like MuPDF.