ILYA
ILYA
So I have a field like that: ``` class MyModel(models.Model): photo = ProcessedImageField( processors=[ OptionalResizeToFit(3000, 3000, upscale=False), ] ) ``` and `OptionalResizeToFit` as follows: ``` class OptionalResizeToFit(ResizeToFit): """ Do the...
Hello. Consider the situation. We have a model with `photo = ProcessedImageField(processors=[ResizeToFit(100, 100)])` and dynamic `upload_to` arg where path is calculated as md5 for the uploaded image (quite typical behaviour)....
Hi. I've decided to clarify this aspect of imagekit usage. As far as I can see its not well described in docs. To begin with, let's assume that we already...
I've had several types of errors. For example, MemoryError with _really_ large photos or simply bad image files that PIL could not even open. But in both cases cache entries...
I get my "debugged" vars printed both by `debug` utils and as a return val, so in case of dataclasses or big dicts (for which it fits the most) it...
Hello. It seems that click behavior has changed recently but I'm not sure if it was affected by CodeGlance update or by platform itself. If I try to drag highlighted...