Module: RedactorRails::UploaderBase::InstanceMethods

Defined in:
lib/redactor_rails/uploader_base.rb

Instance Method Summary collapse

Instance Method Details

#extract_content_typeObject



39
40
41
42
43
44
45
46
47
# File 'lib/redactor_rails/uploader_base.rb', line 39

def extract_content_type
  if file.content_type == 'application/octet-stream' || file.content_type.blank?
    content_type = MIME::Types.type_for(original_filename).first
  else
    content_type = file.content_type
  end

  model.data_content_type = content_type.to_s
end

#quality(percentage) ⇒ Object

process :quality => 85



31
32
33
34
35
36
37
# File 'lib/redactor_rails/uploader_base.rb', line 31

def quality(percentage)
  manipulate! do |img|
    img.quality(percentage)
    img = yield(img) if block_given?
    img
  end
end

#read_dimensionsObject



53
54
55
56
57
58
# File 'lib/redactor_rails/uploader_base.rb', line 53

def read_dimensions
  if model.image? && model.has_dimensions?
    magick = ::MiniMagick::Image.new(current_path)
    model.width, model.height = magick[:width], magick[:height]
  end
end

#set_sizeObject



49
50
51
# File 'lib/redactor_rails/uploader_base.rb', line 49

def set_size
  model.data_file_size = file.size
end

#stripObject

process :strip



22
23
24
25
26
27
28
# File 'lib/redactor_rails/uploader_base.rb', line 22

def strip
  manipulate! do |img|
    img.strip
    img = yield(img) if block_given?
    img
  end
end