Harsh Jadon

Results 5 issues of Harsh Jadon

**### my model field :** ``` image = ProcessedImageField( processors=[ResizeToFit(1200)], format='WEBP', options={'quality': 10}) ``` i want to blur a image and then save it to database

question

### on my ubuntu VPS, I process thousands of images through django-imagekit. ### My code ``` class Thumbnail(ImageSpec): processors = [ResizeToFit(1200)] format = 'WEBP' options = {'quality': 90} Main_image =...

**views.py** ``` class imagess(ImageSpec): processors = [SmartResize(100,100)] format = 'JPEG' options = {'quality': 100} register.generator('main:imagess', imagess) ``` **index.html** `{% generateimage 'main:imagess' source=source_file %}` this generates a image of height 100...

### i m trying to upload a video from my server to youtube through django. **django, youtube API 3, apache server ( VPS )** **error:** `OSError: [Errno 98] Address already...

I am trying to make a very basic masonry list, but unable to generate any output. But when I run the expo project on my laptop browser, I m able...

🙏 help wanted