# File lib/RMagick.rb, line 1790
    def replace(other)
        is_an_image_array other
        current = get_current()
        @images.clear
        other.each {|image| @images << image}
        @scene = self.length == 0 ? nil : 0
        set_current current
        self
    end