0

I want the image from url as it is without being sampled, but while using nostra's universal image loader the image is getting sampled. How am I supposed to avoid this is there any option to be included for this?

user2041902
  • 593
  • 1
  • 6
  • 21
  • just coment out the sampling code!! it should be something like final int REQUIRED_SIZE=70; int width_tmp=o.outWidth, height_tmp=o.outHeight; int scale=1; while(true){ if(width_tmp/2 – Athul Harikumar Mar 28 '13 at 12:08

1 Answers1

1

Enable imageScaleType(ImageScaleType.NONE) in display options (DisplayImageOptions).

nostra13
  • 12,377
  • 3
  • 33
  • 43