You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an issue while creation multiple versions with .png and .jpg formats for the same upload but i am unable to get .jpg version of image. I am uploading .png image but in the versions i can see only .png version. Anybody pls help on this, many thanks.
my code here
version :medium, :if => :image? do
def store_dir
"uploads/#{model.id}"
end
process resize_to_fit: [ 200, 200 ]
process convert: :png
end
version :large, :if => :image? do
def store_dir
"uploads/#{model.id}"
end
process resize_to_fit: [ 500, 500 ]
process convert: :jpg
end
The text was updated successfully, but these errors were encountered:
I have an issue while creation multiple versions with .png and .jpg formats for the same upload but i am unable to get .jpg version of image. I am uploading .png image but in the versions i can see only .png version. Anybody pls help on this, many thanks.
my code here
The text was updated successfully, but these errors were encountered: