From 3375cf74370d8186412a22456625b8654da6f3bf Mon Sep 17 00:00:00 2001 From: albert Date: Thu, 9 Feb 2012 15:29:36 -0500 Subject: [PATCH] improve base thumbnail quality --- lib/tasks/images.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/images.rake b/lib/tasks/images.rake index 861bd33d7..406c5621d 100644 --- a/lib/tasks/images.rake +++ b/lib/tasks/images.rake @@ -6,7 +6,7 @@ namespace :images do Post.where("image_width > ?", Danbooru.config.small_image_width).find_each do |post| if post.is_image? puts "resizing preview #{post.id}" - Danbooru.resize(post.file_path, post.preview_file_path, Danbooru.config.small_image_width, Danbooru.config.small_image_width, 80) + Danbooru.resize(post.file_path, post.preview_file_path, Danbooru.config.small_image_width, Danbooru.config.small_image_width, 90) end end end