菜鸟教程小白 发表于 2022-12-13 16:25:02

android - Cordova 以黑色区域顶部和底部返回横向照片


                                            <p><p>有没有办法配置<a href="http://ngcordova.com/docs/plugins/camera/" rel="noreferrer noopener nofollow">Cordova camera plugin</a>返回没有超出目标高度的黑带的照片?</p>

<p>例如,
<a href="/image/j6Vw6.jpg" rel="noreferrer noopener nofollow"><img src="/image/j6Vw6.jpg" alt="enter image description here"/></a> </p>

<p>这样设置选项时返回:</p>

<pre><code>var options = {
      quality: 100,
      destinationType: Camera.DestinationType.FILE_URI,
      sourceType: Camera.PictureSourceType.CAMERA,
      allowEdit: true,
      encodingType: Camera.EncodingType.JPEG,
      targetWidth: 800,
      targetHeight: 1200,
      popoverOptions: CameraPopoverOptions,
      saveToPhotoAlbum: false,
      correctOrientation: true
      };
$cordovaCamera.getPicture(options).then(function (imageURI) {});
</code></pre>

<p>我已尝试删除 <code>targetWidth</code> 和 <code>targHeight</code> 参数。您无法提前知道照片是横向还是纵向的一个问题。</p>

<p>这是一个一年前从未回答过的问题:<a href="https://stackoverflow.com/questions/25641647/phonegap-camera-returns-photo-with-black-bars" rel="noreferrer noopener nofollow">Phonegap Camera returns photo with black bars</a> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>不要使用 <code>allowEdit</code> 选项或将其设置为 <code>false</code></p>

<p>当您使用 <code>allowEdit: true,</code> 时,它会将您带到一个裁剪屏幕,该屏幕将创建一个方形图像,如果您不缩放图像来裁剪它,它会在其上添加黑色区域顶部和底部使图像成为正方形</p></p>
                                   
                                                <p style="font-size: 20px;">关于android - Cordova 以黑色区域顶部和底部返回横向照片,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/37144570/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/37144570/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: android - Cordova 以黑色区域顶部和底部返回横向照片