mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Fix image format detection for upper case extensions, e.g. JPG
This regression was introduced in 0.56.0. Fixes #6137
This commit is contained in:
parent
00a238e32c
commit
c62bbf7b11
3 changed files with 11 additions and 1 deletions
|
@ -152,6 +152,16 @@ func TestImageTransformLongFilename(t *testing.T) {
|
|||
assert.Equal("/a/_hu59e56ffff1bc1d8d122b1403d34e039f_90587_c876768085288f41211f768147ba2647.jpg", resized.RelPermalink())
|
||||
}
|
||||
|
||||
// Issue 6137
|
||||
func TestImageTransformUppercaseExt(t *testing.T) {
|
||||
assert := require.New(t)
|
||||
image := fetchImage(assert, "sunrise.JPG")
|
||||
resized, err := image.Resize("200x")
|
||||
assert.NoError(err)
|
||||
assert.NotNil(resized)
|
||||
assert.Equal(200, resized.Width())
|
||||
}
|
||||
|
||||
// https://github.com/gohugoio/hugo/issues/5730
|
||||
func TestImagePermalinkPublishOrder(t *testing.T) {
|
||||
for _, checkOriginalFirst := range []bool{true, false} {
|
||||
|
|
|
@ -209,7 +209,7 @@ func (r *Spec) newResource(sourceFs afero.Fs, fd ResourceSourceDescriptor) (reso
|
|||
fd.RelTargetFilename = sourceFilename
|
||||
}
|
||||
|
||||
ext := filepath.Ext(fd.RelTargetFilename)
|
||||
ext := strings.ToLower(filepath.Ext(fd.RelTargetFilename))
|
||||
mimeType, found := r.MediaTypes.GetFirstBySuffix(strings.TrimPrefix(ext, "."))
|
||||
// TODO(bep) we need to handle these ambigous types better, but in this context
|
||||
// we most likely want the application/xml type.
|
||||
|
|
BIN
resources/testdata/sunrise.JPG
vendored
Normal file
BIN
resources/testdata/sunrise.JPG
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 88 KiB |
Loading…
Reference in a new issue