我这里有从表面输出图像遭受缩放,而不是保持不变的分辨率为原始的问题。
输入和输出的一些实例中,与表面的呈现大小沿。
实施例1:
Original Image = {
height: 2560,
width: 1440,
}
Final Image = {
height: 1518,
width: 854,
}
Surface Size = {
height: 284.625,
width: 506
}
实施例2:
Original Image = {
height: 357,
width: 412,
}
Final Image = {
height: 936,
width: 1080,
}
Surface Size = {
height: 360,
width: 311.9417475728156
}
为了捕捉图像,我用下面的代码:
getEditedImage = async () => {
return await this.image.glView.capture({ quality: 1 });
};
其中image
表示表面从我拍摄图像。
我想输出的图像分辨率是完全一样的输入。是否有人有一个想法,我怎么能实现呢?
您将看到如何在这里使用。
https://docs.expo.io/versions/v32.0.0/sdk/gl-view/
格式(串),压缩(数)的部分似乎是您需要的部分。
来源:https://docs.expo.io/versions/latest/sdk/take-snapshot-async/
此链接包含质量的描述。
const targetPixelCount = 1080; // If you want full HD pictures
const pixelRatio = PixelRatio.get(); // The pixel ratio of the device
// pixels * pixelratio = targetPixelCount, so pixels = targetPixelCount / pixelRatio
const pixels = targetPixelCount / pixelRatio;
const result = await takeSnapshotAsync(this.imageContainer, {
result: 'file',
height: pixels,
width: pixels,
quality: 1,
format: 'png',
});