About 306,000 results
Open links in new tab
  1. Node.js: image resizing without ImageMagick - Stack Overflow

    Image resizing is anything but simple. The JPEG format is particularly complex, and there are several ways to scale graphics with results of varying quality, few of them easily implemented. Image …

  2. Image resizing client-side with JavaScript before upload to the server

    Aug 9, 2018 · I am looking for a way to resize an image client-side with JavaScript (really resize, not just change width and height). I know it's possible to do it in Flash but I would like to avoid it if possi...

  3. How to resize an Image C# - Stack Overflow

    Oct 7, 2015 · As Size, Width and Height are Get() properties of System.Drawing.Image; How can I resize an Image object at run-time in C#? Right now, I am just creating a new Image using: // …

  4. Resize image with javascript canvas (smoothly) - Stack Overflow

    Oct 9, 2013 · I'm trying to resize some images with canvas but I'm clueless on how to smoothen them. On photoshop, browsers etc.. there are a few algorithms they use (e.g. bicubic, bilinear) but I don't …

  5. ReactJS: Resize image before upload - Stack Overflow

    May 12, 2020 · In my reactJs project, I need to resize image before uploading it. I am using react-image-file-resizer library which has a simple example but not working for me. I have tried this but its shows...

  6. Java - resize image without losing quality - Stack Overflow

    Jul 15, 2014 · Resizer resizer = DefaultResizerFactory.getInstance().getResizer( new Dimension(imageToScale.getWidth(), imageToScale.getHeight()), new Dimension(dWidth, dHeight)) …

  7. ASP.NET Image Resizing - Stack Overflow

    We need the ability to gracefully resize any photo/image to an exact width/height without skewing the image. We can use either a third-party solution, or we can use the built-in .NET functionality...

  8. Use HTML5 to resize an image before upload - Stack Overflow

    I have found a few different posts and even questions on stackoverflow answering this question. I am basically implementing this same thing as this post. So here is my issue. When I upload the pho...

  9. Quill.js 2.0.0 image-resize plugin availability - Stack Overflow

    Feb 21, 2024 · I just wanted to know if someone has already updated quill to it's latest 2.0.0rc version and is using the plugin image-resize for it. Before it was simply initialisable by using it like that: var ...

  10. Using C# how can I resize a jpeg image? - Stack Overflow

    Jun 19, 2010 · Using C# how can I resize a jpeg image? A code sample would be great.