コード例 #1
0
 private static String buildImagePath(Image image, int width) {
   if (image.isHatchetImage()) {
     int squareImageWidth = Math.min(image.getHeight(), image.getWidth());
     if (isWifiAvailable()) {
       if (squareImageWidth > width) {
         return image.getImagePath() + "?width=" + width + "&height=" + width;
       }
     } else if (squareImageWidth > width * 2 / 3) {
       return image.getImagePath() + "?width=" + width * 2 / 3 + "&height=" + width * 2 / 3;
     }
   }
   return image.getImagePath();
 }
コード例 #2
0
 private static String buildImagePath(Image image, int width) {
   if (image.isHatchetImage()) {
     int imageSize = Math.min(image.getHeight(), image.getWidth());
     int actualWidth;
     if (NetworkUtils.isWifiAvailable()) {
       actualWidth = Math.min(imageSize, width);
     } else {
       actualWidth = Math.min(imageSize, width * 2 / 3);
     }
     return image.getImagePath() + "?width=" + actualWidth + "&height=" + actualWidth;
   }
   return image.getImagePath();
 }