added new thumb size
This commit is contained in:
parent
1628c0d3d2
commit
4d1ab7a226
|
@ -67,6 +67,7 @@ class GalleriesController < ApplicationController
|
||||||
"link_to_show" => OrbitHelper.widget_more_url + "/" + a.album.to_param + "#" + a.id.to_s,
|
"link_to_show" => OrbitHelper.widget_more_url + "/" + a.album.to_param + "#" + a.id.to_s,
|
||||||
"alt_title" => alt_text,
|
"alt_title" => alt_text,
|
||||||
"thumb-src" => a.file.thumb.url,
|
"thumb-src" => a.file.thumb.url,
|
||||||
|
"thumb-large-src" => a.file.thumb_large.url,
|
||||||
"mobile-src" => a.file.mobile.url,
|
"mobile-src" => a.file.mobile.url,
|
||||||
"theater-src" => a.file.theater.url
|
"theater-src" => a.file.theater.url
|
||||||
}
|
}
|
||||||
|
@ -109,4 +110,5 @@ class GalleriesController < ApplicationController
|
||||||
|
|
||||||
render :json => {"data" => data}.to_json
|
render :json => {"data" => data}.to_json
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
|
@ -1,3 +1,4 @@
|
||||||
|
require 'net/http'
|
||||||
class AlbumImage
|
class AlbumImage
|
||||||
include Mongoid::Document
|
include Mongoid::Document
|
||||||
include Mongoid::Timestamps
|
include Mongoid::Timestamps
|
||||||
|
|
|
@ -59,6 +59,11 @@ class GalleryUploader < CarrierWave::Uploader::Base
|
||||||
process :resize_to_fill => [200, 200]
|
process :resize_to_fill => [200, 200]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
version :thumb_large do
|
||||||
|
process :fix_exif_rotation
|
||||||
|
process :resize_to_fill => [600, 600]
|
||||||
|
end
|
||||||
|
|
||||||
version :theater do
|
version :theater do
|
||||||
process :fix_exif_rotation
|
process :fix_exif_rotation
|
||||||
process :resize_to_limit => [1920, 1080]
|
process :resize_to_limit => [1920, 1080]
|
||||||
|
|
Loading…
Reference in New Issue