ImageLoaderUtil.java 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. package com.example.zhpan.circleviewpager.utils;
  2. import android.graphics.Bitmap;
  3. import android.os.Environment;
  4. import android.support.annotation.DrawableRes;
  5. import android.util.Log;
  6. import android.view.View;
  7. import android.widget.ImageView;
  8. import com.bumptech.glide.Glide;
  9. import com.bumptech.glide.load.engine.DiskCacheStrategy;
  10. import com.bumptech.glide.request.target.SizeReadyCallback;
  11. import java.io.BufferedOutputStream;
  12. import java.io.ByteArrayOutputStream;
  13. import java.io.File;
  14. import java.io.FileInputStream;
  15. import java.io.FileNotFoundException;
  16. import java.io.FileOutputStream;
  17. import java.io.IOException;
  18. /**
  19. * 图片加载框架封装类
  20. */
  21. public class ImageLoaderUtil {
  22. public static void loadImg(ImageView v, String url) {
  23. Glide.with(v.getContext())
  24. .load(url)
  25. .fitCenter()
  26. .diskCacheStrategy(DiskCacheStrategy.ALL)
  27. .into(v);
  28. }
  29. public static void loadImg(ImageView v, String url, @DrawableRes int placeholder) {
  30. Glide.with(v.getContext())
  31. .load(url)
  32. .fitCenter()
  33. .placeholder(placeholder)
  34. .diskCacheStrategy(DiskCacheStrategy.ALL)
  35. .into(v);
  36. }
  37. public static void loadGifImg(ImageView v, String url) {
  38. Glide.with(v.getContext())
  39. .load(url)
  40. .asBitmap()
  41. .fitCenter()
  42. .diskCacheStrategy(DiskCacheStrategy.ALL)
  43. // .placeholder(R.drawable.head_portrait)
  44. .into(v);
  45. }
  46. public static void loadCircleImg(ImageView v, String url, @DrawableRes int placeholder) {
  47. Glide.with(v.getContext())
  48. .load(url)
  49. .placeholder(placeholder)
  50. .transform(new GlideCircleTransform(v.getContext()))
  51. .into(v);
  52. }
  53. public static void loadRoundImg(ImageView v, String url, @DrawableRes int placeholder) {
  54. Glide.with(v.getContext())
  55. .load(url)
  56. .transform(new GlideRoundTransform(v.getContext()))
  57. .placeholder(placeholder)
  58. .into(v);
  59. }
  60. public static void loadImgFillCenter(ImageView v, String localPath) {
  61. Glide.with(v.getContext()).load(localPath)
  62. .centerCrop()
  63. .into(v);
  64. }
  65. public static void loadAdapterImg(ImageView v, String url, final View itemView) {
  66. Glide.with(v.getContext())
  67. .load(url)
  68. .centerCrop()
  69. .diskCacheStrategy(DiskCacheStrategy.ALL)
  70. // .placeholder(R.drawable.placeholder_image)
  71. .into(v)
  72. .getSize(new SizeReadyCallback() {
  73. @Override
  74. public void onSizeReady(int width, int height) {
  75. if (!itemView.isShown()) {
  76. itemView.setVisibility(View.VISIBLE);
  77. }
  78. }
  79. });
  80. }
  81. /**
  82. * 保存文件
  83. *
  84. * @param bm
  85. * @param fileName
  86. * @throws IOException
  87. */
  88. public static String saveFile(Bitmap bm, String fileName) {
  89. String s = Environment.getExternalStorageDirectory().toString();
  90. File dirFile = new File(s + "/DCIM/Camera/");
  91. if (!dirFile.exists()) {
  92. dirFile.mkdir();
  93. }
  94. File myCaptureFile = new File(s + "/DCIM/Camera/" + fileName);
  95. BufferedOutputStream bos = null;
  96. try {
  97. bos = new BufferedOutputStream(
  98. new FileOutputStream(myCaptureFile));
  99. } catch (FileNotFoundException e) {
  100. e.printStackTrace();
  101. }
  102. bm.compress(Bitmap.CompressFormat.JPEG, 100, bos);
  103. try {
  104. bos.flush();
  105. bos.close();
  106. } catch (IOException e) {
  107. e.printStackTrace();
  108. }
  109. return myCaptureFile.getAbsolutePath();
  110. }
  111. /**
  112. * 获得指定文件的byte数组
  113. */
  114. public static byte[] getBytes(File file) {
  115. byte[] buffer = null;
  116. try {
  117. FileInputStream fis = new FileInputStream(file);
  118. ByteArrayOutputStream bos = new ByteArrayOutputStream(1000);
  119. byte[] b = new byte[1000];
  120. int n;
  121. while ((n = fis.read(b)) != -1) {
  122. bos.write(b, 0, n);
  123. }
  124. fis.close();
  125. bos.close();
  126. buffer = bos.toByteArray();
  127. } catch (IOException e) {
  128. e.printStackTrace();
  129. Log.e("e", "IOException");
  130. }
  131. return buffer;
  132. }
  133. }