Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot change image format in Grav 1.7 #3173

Closed
fdruide opened this issue Jan 22, 2021 · 1 comment
Closed

Cannot change image format in Grav 1.7 #3173

fdruide opened this issue Jan 22, 2021 · 1 comment
Assignees

Comments

@fdruide
Copy link

fdruide commented Jan 22, 2021

I found a regression in Grav 1.7.3 from Grav 1.6.31 while doing HTML diff of our website. We have a template where we use the image format method to replace several PNG to JPG. However, it remains in PNG in Grav 1.7.3. I hope this is not a repost.

Here is the minimal steps to reproduce the problem :

  1. Get a clean install of Grav core 1.7.3
  2. Modify user/themes/quark/templates/default.html.twig with the following content:
{% extends 'partials/base.html.twig' %}

{% block content %}
    {% set img = page.media.images|first %}
    <img src="{{ img.format('jpg').url() }}" />
    {{ page.content|raw }}
{% endblock %}
  1. Add the included PNG image inside the following folder : user/pages/01.home/
    my-image

  2. Load the main page.

Actual result in Grav 1.7.3, the image is still a PNG (the transparency is still there):
format-grav1-7-3

Expected result as in Grav 1.6.31, the image becomes JPG :
format-grav1-6-31

The problem is in ImageMediaTrait::saveImage. The format is overridden with the following code :

            $extension = strtolower($this->get('extension'));
            $this->format($extension);

I think the fix would be to verify the format is actually set to guess before getting the file’s extension :

        if ($this->format == 'guess') {
            $extension = strtolower($this->get('extension'));
            $this->format($extension);
        }

In that case, if we set the format prior hand, our requested format would not be overridden.

Thank you for your time,
François

@NicoHood
Copy link
Contributor

NicoHood commented Feb 1, 2021

This can be closed now

@rhukster rhukster closed this as completed Feb 1, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants