菜鸟教程小白 发表于 2022-12-12 23:43:27

ios - 用于 iPad 中横向方向的 ZBar


                                            <p><p>我曾在 iPhone 和 iPad 上使用过 Zbar,它可以正常工作,没有任何问题,但在 iPad 的横向模式下却不行。当我在 iPad 中以横向模式显示 <code>ZBarReaderViewController</code> 时, View 会发生 90 度偏移,如下图所示,</p>

<p> <img src="/image/ghFFJ.png" alt="Zbar in landscape"/> </p>

<p>包在 table 上的位置,图像是使用 iPad 以横向模式拍摄的。我希望包的图像不要移动。</p>

<p>我已经尝试将 <code>supportedOrientationsMask</code> 设置为</p>

<pre><code>reader.supportedOrientationsMask = ZBarOrientationMask(UIInterfaceOrientationLandscapeLeft || UIInterfaceOrientationLandscapeRight);
</code></pre>

<p>但它没有以正确的方向显示,而是偏移了 90 度。有人可以帮我解决这个问题吗?非常感谢任何及时的帮助。谢谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我遇到了几乎相同的问题,我通过添加以下代码解决了这个问题。我的应用只支持横向:</p>

<pre><code>UIInterfaceOrientation orientation = .statusBarOrientation;
if (UIDeviceOrientationLandscapeLeft == orientation) {
    //Rotate 90
    reader.cameraViewTransform = CGAffineTransformMakeRotation (3*M_PI/2.0);
} else if (UIDeviceOrientationLandscapeRight == orientation) {
    //Rotate 270
    reader.cameraViewTransform = CGAffineTransformMakeRotation (M_PI/2.0);
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 用于 iPad 中横向方向的 ZBar,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/13394354/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/13394354/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 用于 iPad 中横向方向的 ZBar