File.open("image.jpg", "rb") do |input|
  File.open("copy.jpg", "wb") do |output|
    output.write(input.read)
  end
end