我是反应原生的新手。
我想要做的是在设备中放置图像并保持图像的比例。我只想制作width : 100%
我搜索了如何制作它,似乎resizeMode = 'contain'
对此有好处。
但是,由于我使用resizeMode = 'contain'
,因此图像会使位置垂直居中,这是我不想要的。
我希望它垂直顶部。
我尝试使用react-native-fit-image这样的插件,但没有运气。
我找到了the reason why the image is not sizing automatically。 但我仍然不知道如何制作它。
所以,我的问题是处理这种情况的最佳方法是什么?
我是否必须手动为每张图片添加width, height
尺寸?
我想:
反应本机测试代码:
https://snack.expo.io/ry3_W53rW
最终我要做的是:
https://jsfiddle.net/hadeath03/mb43awLr/
感谢。
答案 0 :(得分:21)
图像是垂直居中的,因为您已将flex: 1
添加到样式属性中。不要添加flex:1,因为这会将图像填充到其父级,这在这种情况下是不可取的。
您应该始终在React Native中的图像上添加高度和宽度。如果图像始终相同,您可以使用Dimensions.get('window').width
来计算图像的大小。例如,如果比率始终为16x9,则高度为图像宽度的9/16。宽度等于设备宽度,所以:
const dimensions = Dimensions.get('window');
const imageHeight = Math.round(dimensions.width * 9 / 16);
const imageWidth = dimensions.width;
return (
<Image
style={{ height: imageHeight, width: imageWidth }}
/>
);
注意:使用这样的实现时,在使用分屏等旋转设备时,图像不会自动调整大小。如果支持多个方向,则必须处理这些操作。 强>
如果比率不相同,则动态更改每个不同图像的比率9/16。如果你真的不打扰图像有点裁剪,你也可以使用固定高度的封面模式:(https://snack.expo.io/rk_NRnhHb)
<Image
resizeMode={'cover'}
style={{ width: '100%', height: 200 }}
source={{uri: temp}}
/>
答案 1 :(得分:2)
也是为了拍这个照片
您还可以等待Image onLayout回调以获取其布局属性,并使用它来更新尺寸。我为此创建了一个组件:
import * as React from 'react';
import { Dimensions, Image, ImageProperties, LayoutChangeEvent, StyleSheet, ViewStyle } from 'react-native';
export interface FullWidthImageState {
width: number;
height: number;
stretched: boolean;
}
export default class FullWidthImage extends React.Component<ImageProperties, FullWidthImageState> {
constructor(props: ImageProperties) {
super(props);
this.state = { width: 100, height: 100, stretched: false };
}
render() {
return <Image {...this.props} style={this.getStyle()} onLayout={this.resizeImage} />;
}
private resizeImage = (event: LayoutChangeEvent) => {
if (!this.state.stretched) {
const width = Dimensions.get('window').width;
const height = width * event.nativeEvent.layout.height / event.nativeEvent.layout.width;
this.setState({ width, height, stretched: true });
}
};
private getStyle = (): ViewStyle => {
const style = [StyleSheet.flatten(this.props.style)];
style.push({ width: this.state.width, height: this.state.height });
return StyleSheet.flatten(style);
};
}
这将更新图像的尺寸以匹配屏幕的宽度。
答案 2 :(得分:1)
您可以将此样式应用于图片:
如果您将Value Rank
5 1
4 2
2 4
1 5
应用于imageStyle
标记,则图片宽度将为100%,图片高度将为300.
Image
假设您的图片代码是:
imageStyle:{
height:300,
flex:1,
width:null
}
答案 3 :(得分:0)
右键单击图像以获取分辨率。以我为例1233 x 882
col
全部
答案 4 :(得分:0)
我有一个组件可以获取图像道具并进行适当的调整(并在 ScrollView
和 require
d 资产中工作。在滚动视图中,它使用图像的高度作为高度不管它是否被缩放会导致一些多余的填充。此组件执行大小计算并重新调整图像样式以使用 100% 宽度保持加载的文件的纵横比。
import React, { useState } from "react";
import { Image, ImageProps } from "react-native";
export function FullWidthImage(props: ImageProps) {
// Initially set the width to 100%
const [viewDimensions, setViewDimensions] = useState<{
width?: number | string;
height?: number | string;
}>({
width: "100%",
height: undefined,
});
const [imageDimensions, setImageDimensions] = useState<{
width?: number;
height?: number;
}>(() => {
if (typeof props.source === "number") {
// handle case where the source is an asset in which case onLoad won't get triggered
const { width, height } = Image.resolveAssetSource(props.source);
return { width, height };
} else {
return {
width: undefined,
height: undefined,
};
}
});
return (
<Image
onLayout={(e) => {
// this is triggered when the "view" layout is provided
if (imageDimensions.width && imageDimensions.height) {
setViewDimensions({
width: e.nativeEvent.layout.width,
height:
(e.nativeEvent.layout.width * imageDimensions.height) /
imageDimensions.width,
});
}
}}
onLoad={(e) => {
// this is triggered when the image is loaded and we have actual dimensions.
// But only if loading via URI
setImageDimensions({
width: e.nativeEvent.source.width,
height: e.nativeEvent.source.height,
});
}}
{...props}
style={[
props.style,
{
width: viewDimensions.width,
height: viewDimensions.height,
},
]}
/>
);
}
这是为了补偿 contain
,即使图像宽度为 100%
,它也会在图像周围添加额外的填充(这基本上是使图像视图高度完整)。
请注意,您可能试图将其作为背景放置,在这种情况下,ImageBackground
无法在 Android 上正确呈现。使用上面的代码进行了一些调整,我创建了以下内容,以使用长文本和短文本正确呈现内容。
import React, { PropsWithChildren } from "react";
import { ImageProps, View } from "react-native";
import { FullWidthImage } from "./FullWidthImage";
export function FullWidthImageBackground(props: PropsWithChildren<ImageProps>) {
const imageProps = { ...props };
delete imageProps.children;
return (
<View>
<FullWidthImage
{...imageProps}
style={{
position: "absolute",
}}
/>
{props.children}
</View>
);
}
请注意,如果您使用带有标题的它,则需要添加一个填充视图作为第一个子项
<View
style={{
height: safeAreaInsets.top + (Platform.OS === "ios" ? 96 : 44),
}}
/>