菜鸟教程小白 发表于 2022-12-12 21:10:55

ios - GPUImageiOSBlurFilter imageByFilteringImage : returns nil


                                            <p><p>花了一些时间,并不能真正理解问题出在哪里。</p>

<p>我正在使用 GPUImage 0.1.3(来自 CocoaPods)并且代码非常简单:</p>

<pre><code>GPUImageiOSBlurFilter *iosBlur = [ init];
UIImage *splashScreenImage = ;
UIImage *bluredImage = ;
</code></pre>

<p>bluredImage 为零。
我浏览了代码,iosBlur 不是 nil,splashScreenImage 不是 nil 并且包含正确的图像(在调试器的快速 View 中检查)。所以我不知道哪里出了问题。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这就是我解决它的方法 - 粗略,但有效。
顺便说一句 - GPUImage 的最新代码仍然会发生这种情况,尽管我主要在模拟器中看到了这个问题。</p>

<pre><code>    int errorCount = 0;
    UIImage *blurImage;
    //Loop workaround for some unknown GPUImage issue where sometimes the result is nil.
    while (! (blurImage = ) ) {
      ++errorCount;
    }

    if (errorCount &gt; 0) {
      NSLog(@&#34;GPUImageiOSBlurFilter imageByFilteringImage error count: %i&#34;, errorCount);
    }
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - GPUImageiOSBlurFilter imageByFilteringImage : returns nil,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/22810163/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/22810163/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - GPUImageiOSBlurFilter imageByFilteringImage : returns nil