Skip to content Skip to sidebar Skip to footer

Cannot Load Progressive Jpeg Images In Libgdx

Here's my source package com.effect.bio; import com.badlogic.gdx.ApplicationListener; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.Input; import com.badlogic.gdx.graphics.

Solution 1:

This part of the exception looks relevant:

Caused by: java.io.IOException: couldn't load pixmap progressive jpeg

Progressive JPEG images are not supported by Libgdx: https://code.google.com/p/libgdx/issues/detail?id=761

A progressive jpeg is one that is designed for use over the internet, and is setup such that a partial download will give a useful image and it will progressively get better as more information is downloaded (vs. standard jpg where you need most of the image before you can display a whole image). Progressive support isn't really necessary for desktop or Android apps. You should be able to use most any image editing software to convert this file to a regular jpeg.

Post a Comment for "Cannot Load Progressive Jpeg Images In Libgdx"