想要獲取圖像
我用網絡攝像頭捕捉圖像。 和捕獲圖像溢出& ltdiv & gt。所以,我只想得到里面的圖像& ltdiv & gt。
如果我使用隱藏,它只是隱藏,而不是下降(或作物)。
所以,我想知道如何刪除外部圖像。
捕捉圖像
<CustomWebCam
onLoadedData={() => {
setTimeout(() => setError(false), 500);
setLoading(false);
}}
audio={false}
ref={webcamRef}
screenshotFormat="image/jpeg"
screenshotQuality="1.0"
forceScreenshotSourceSize
videoConstraints={videoConstraints}
onUserMediaError={() => {
alert('Error');
}}
muted
/>
我想在這里只使用內部div圖像
<ReactImageCrop
width={windowDimensions.width * 0.7}
height={windowDimensions.height * 0.7 * 0.5}
imageData={imgSrc}
/>
試試這個:
.img {
width:460px;
overflow:hidden;
}
<div class="img">
<img src="https://i.stack.imgur.com/8NrcV.png">
</div>
制作一個函數來確定已知的寬度和高度,然后根據以下內容添加一個類: 用& gt身高班級景觀& quot 高度& lt寬度& quot班級肖像& quot
.Landscape {
width: 100%;
height: auto;
overflow: hidden;
}
.Portrait {
width: auto;
height: 100%;
overflow: hidden;
}