我想從jpeg文件使用http://www.jappit.com/blog/2008/12/04/j2me-animated-gif-encoder/創建一個gif,這個線程是我的參考How to create an animated GIF from JPEGs in Android (development)。轉換位圖爲javax.microedition.lcdui.Image
encoder.start(bos);
for (Bitmap bitmap : bitmaps) {
encoder.addFrame(bitmap);
}
但ADDFRAME查找圖像(類型AnimatedGifEncoder的方法ADDFRAME(圖片)不適用於參數(位圖)),我不知道我們如何轉換位圖到.lcdui.Image
任何線索?
感謝
你必須使用GIF嗎?爲什麼不用ObjectAnimator動畫位圖? – 2014-11-02 06:40:33