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
Right now Glide automatically outputs images as jpg if no format (fm) parameter has been set. However, this isn't always ideal. For example, if you have a transparent png you may want it to remain a png. I'd like to improve this somehow. Glide can either:
Default to the source image format by default, or
Add a new fm option to specify using the original, ie: kayaks.jpg?fm=src
I'm sort of leaning towards the first option. That seems to be what Imgix is doing as well:
The output format to convert the image to. Valid values are jpg and png. The default value is to use the file format of the input image.
Thoughts?
The text was updated successfully, but these errors were encountered:
Decided on option 1, and implemented here: 44a6fa4
Primary reason being that unless an image manipulation has been specified, it shouldn't occur. This is in keeping with how other manipulations operate. It may mean adding fm=jpg to most URLs, but I see the value in having it explicitly set.
Right now Glide automatically outputs images as
jpg
if no format (fm
) parameter has been set. However, this isn't always ideal. For example, if you have a transparentpng
you may want it to remain apng
. I'd like to improve this somehow. Glide can either:fm
option to specify using the original, ie:kayaks.jpg?fm=src
I'm sort of leaning towards the first option. That seems to be what Imgix is doing as well:
Thoughts?
The text was updated successfully, but these errors were encountered: