agusmakmun / agusmakmun/django-image-optimizer

Make it possible to not add background

Aperta
#11 0 commenti 0 reazioni 0 assegnatari Vedi su GitHub
Lingua principale
Python
Stelle
25
Fork
11
Metriche di merge delle PR
Nessuna PR unita negli ultimi 30g

Descrizione

Hi!

I want to specify a maximum size for my images (let's say 1000px width and 1000px height). Then I did this:

```python
image = OptimizedImageField(
optimized_image_output_size=(1000, 1000),
optimized_image_resize_method='thumbnail'
)
```

When I upload a rectangle image (like 4000px*2000px), the field adds a white border around it to get a 1000*1000px image whereas I want 1000px to be the **maximum**, not the exact size.

The problem is here: https://github.com/agusmakmun/django-image-optimizer/blob/master/image_optimizer/utils.py#L68

Why don't you use the output of `resizeimage` directly, which has the right size?

Thanks

Guida per i contributori

Nessuna guida per i contributori indicizzata per questo repository

Valutazione

Questa issue non è ancora stata valutata.

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.