module Ckeditor::Backend::CarrierWave::InstanceMethods

def strip

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