Back to project page singly-android.
The source code is released under:
MIT License
If you think the Android project singly-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.singly.android.util; //from w w w . j av a 2 s.c o m import android.graphics.Bitmap; public class ImageInfo { public String id = null; public String imageUrl = null; public int width = -1; public int height = -1; public Bitmap.CompressFormat format; public int quality = 100; public boolean sample = true; public ImageCacheListener listener = null; }