Class: ImageVise::StripMetadata

Inherits:
Object
  • Object
show all
Defined in:
lib/image_vise/strip_metadata.rb

Overview

Strips metadata from the image (EXIF, IPTC etc.) using the RMagick ‘strip!` method

The corresponding Pipeline method is ‘strip_metadata`.

Instance Method Summary collapse

Instance Method Details

#apply!(magick_image) ⇒ Object



6
7
8
# File 'lib/image_vise/strip_metadata.rb', line 6

def apply!(magick_image)
  magick_image.strip!
end