React Native 中的'<Image/>' 组件无法在iOS 平台加载带有DNG 扩展名的图片

The '<Image/>' Component in React Native can't load the picture with DNG extension in the iOS Platform

像这样使用Image组件时遇到了一些麻烦

<Image style={{width: 50, height: 50}} source={{uri:'http://192.168.0.1/photos/photo.dng'}}/>

DEBUG模型没有任何问题。但是,如果我将其更改为 RELEASE 模型。它无法加载 DNG 图片,但 JPG 仍然可以。不知道怎么解决。

.dng 当前 Image

支持

The currently supported formats are png, jpg, jpeg, bmp, gif, webp (Android only), psd (iOS only).

为什么它在调试时有效

如果您启用了远程调试,它可能在调试时有效。当使用 Chrome Dev Tools 进行远程调试时,Chrome 将执行 javascript。不幸的是,Chrome 支持的内容与 React Native 略有不同。