我使用回形针允许用户上传图像,并且只有在图像为tiff图像时才会将图像转换为jpg/png 。回形针 - 将tiff图像转换为jpg或png
我使用下面的代码在我image.rb:
validates_attachment_presence :data
validates_attachment_content_type :data,
:content_type => ['image/jpeg', 'image/pjpeg',
'image/jpg', 'image/png', 'image/tif', 'image/gif'], :message => "has to be in a proper format"
我想知道是否有可能上传时,他们TIFF图像转换成JPG或PNG。
非常感谢