菜鸟教程小白 发表于 2022-12-13 10:42:07

javascript - 如何将 imageView.image 转换为 TiBlob 对象?


                                            <p><p>我正在尝试将图片保存在照片库中
这是我的代码</p>

<pre><code>var views = [];
for (var i = 1; i &lt;= 100; i++) {
    var img = Ti.UI.createImageView({
      image : &#39;/images/&#39; + i + &#39;.jpg&#39;
    });
    views.push(img);
}
scrollableView.setViews(views);
</code></pre>

<p>在保存按钮处</p>

<pre><code>Ti.Media.saveToPhotoGallery(views.image, {
    success : function() {
      alert(&#39;success&#39;);
    },
    error : function(e) {
      alert(e.error);
    }
});
</code></pre>

<p>它给出了错误</p>

<pre><code>invalid media type: Exepcted either TiBlob or TiFile, was: String
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>试试这个,直接替换</p>

<pre><code>views.image
</code></pre>

<p>与</p>

<pre><code>views.toBlob();
</code></pre>

<p>希望这会对你有所帮助。</p></p>
                                   
                                                <p style="font-size: 20px;">关于javascript - 如何将 imageView.image 转换为 TiBlob 对象?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/29742213/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/29742213/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: javascript - 如何将 imageView.image 转换为 TiBlob 对象?