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 hope someone can help. Doing some very basic resizing. But for some JPG files there are color difference between the original and the resized image when using ResizeToFill and ResizeToFit.
test = ImageSpecField(
source="filename",
processors=[ResizeToFill(1024, 768)],
format="JPEG",
options={"quality": 100},
)
Is there any option I'm missing that would fix this?
Thx!
The text was updated successfully, but these errors were encountered:
The resizing processors don't have information about changing colors. Only if you use ResizeToFit or ResizeCanvas you can pass color but this is for the background.
Can you give us a sample of original image and the resized image with changed colors to see what you mean?
Great package!
I hope someone can help. Doing some very basic resizing. But for some JPG files there are color difference between the original and the resized image when using ResizeToFill and ResizeToFit.
Is there any option I'm missing that would fix this?
Thx!
The text was updated successfully, but these errors were encountered: