Browse Source

Fix for the thumbnail generation routine

master
Drew Short 10 years ago
parent
commit
0edd1d95d4
  1. 4
      src/main/scala/com/sothr/imagetools/image/ImageService.scala

4
src/main/scala/com/sothr/imagetools/image/ImageService.scala

@ -79,9 +79,9 @@ object ImageService extends Logging {
def calculateThumbPath(md5:String):String = {
//break the path down into 4 char parts
val split:List[String] = md5.grouped(4).toList
val split:List[String] = md5.grouped(3).toList
var dirPath = ""
for (seg <- split) dirPath += seg + "/"
for (index <- 0 until (split.length-1)) dirPath += split(index) + "/"
var path:String = s"${PropertiesService.get(PropertiesEnum.ThumbnailDirectory.toString)}${PropertiesService.get(PropertiesEnum.ThumbnailSize.toString)}/$dirPath"
try {
val dir = new File(path)

Loading…
Cancel
Save