0
所以,我一直在使用Rmagick庫調整紅寶石相似圖片等等紅寶石RMagick調整圖像大小作爲二進制數據存儲在數據庫中
require 'RMagick'
image = Magick::Image.read(filename).first
image.change_geometry!("640x480") { |cols, rows, img|
newimg = img.resize(cols, rows)
newimg.write("newfilename.jpg")
}
而這只是正常存儲在一個文件中的圖像,但我如何爲二進制數據存儲在數據庫中的圖像做同樣的事情,所以基本上二進制數據在一個變量中。
感謝的人,完美的作品。 – user2968505