3
當使用回形針,如果我嘗試在創建函數進入像這樣的URL(後圖片保存Rails的回形針圖片保存
image = Magick::ImageList.new('public' + @picture.photo.url)
我得到的錯誤
Magick::ImageMagickError in PicturesController#create
no decode delegate for this image format `public/system/photos/115/original/Kitchener-2011103100531.jpg?26621' @ error/constitute.c/ReadImage/532
,如果我嘗試進入
@picture.latitude = EXIFR::JPEG.new('public' + @picture.photo.url).gps_lat
只是處理EXIF數據我得到
Errno::ENOENT in PicturesController#create
No such file or directory - public/system/photos/116/original/Kitchener-20111031-00531.jpg?26744
當我嘗試在軌道控制檯中做photo.url時,它給出了很好的格式,但在我的控制器中添加了一些怪異的垃圾'?26621'。我該如何解決? (正則表達式看起來很容易解決這個問題,但是否有比這更好的辦法)
很好,這工作 – Kevin