| bio | website | nathanaeljones.com |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 3 years, 9 months |
| seen | 13 hours ago | |
| stats | profile views | 912 |
|
14h |
answered | Assign/Convert to Adobe RGB Color profile |
|
18h |
revised |
How to use Ext.resizer.Resizer in a Ext.window.Window for xtype: image Removing incorrect tag |
|
18h |
revised |
Which free image resizing library can I use for resizing and probably serving images? deleted 404 characters in body |
|
18h |
answered | Crop/Remove Unwanted Space at the edges of image |
|
18h |
comment |
Which free image resizing library can I use for resizing and probably serving images? Absolutely, it's provided as the WhitespaceTrimmer plugin |
|
Jun 13 |
comment |
imageresizer.net poor performance with simultaneous requests Could you provide the Jpeg files and/or the byte size and resolution? It's not the right tool for gigapixel images. |
|
Jun 12 |
answered | Conditionally resize images using imageresizing.net |
|
Jun 12 |
answered | Only basic parameters are honoured in ImageResizer console app |
|
Jun 12 |
comment |
ImageResizer, Amazon S3 and caching Sorry, I forgot, you also have to use scache=disk in the querystring, or auto-apply it to all URLs with the Rewrite event. This will be improved in the future. |
|
Jun 10 |
comment |
Is using Config.Current.Pipeline.Rewrite the most efficient way to implement watermarking on hotlinked files? You might have the RTM version of .NET 4.0 without updates (see this SO question). Request is definitely available unless you've got a variable name conflict. |
|
Jun 9 |
answered | ImageResizer.net and S3Reader giving AWSSDK Version error |
|
Jun 9 |
answered | Is using Config.Current.Pipeline.Rewrite the most efficient way to implement watermarking on hotlinked files? |
|
Jun 9 |
answered | ImageResizer.MVC not working on share hosting |
|
Jun 7 |
awarded | Necromancer |
|
Jun 5 |
answered | How can I properly set the cache directory for ImageResizer on an Azure WebRole? |
|
Jun 5 |
comment |
ImageResizer, Amazon S3 and caching It's very new, and hasn't been documented yet. <add name="SourceDiskCache" /> will get it installed, if you have the DiskCache dll in /bin. |
|
Jun 4 |
answered | ImageResizer, Amazon S3 and caching |
|
Jun 2 |
comment |
Serving Images with on-the-fly resize If you want something extremely fast and scalable, ImageResizer is probably what you're looking for. eBay and MSN use it. |
|
May 31 |
comment |
Is it possible to serve up static images that are processed (and cached) by ImageResizing? You can use the Config.Current.Rewrite event to dynamically watermark hotlinked images (or any other criteria available in the http context). They'll be cached separately at the ImageResizer level, although you would have to use a redirect if you were using a CDN. |
|
May 30 |
comment |
Image resizing efficiency in C# and .NET 3.5 Something's definitely wrong. The ImageResizer library for ASP.NET uses GDI+ internally and has much higher throughput. I suspect it's due to the way I/O is handled - buffering the file stream to memory before creating an Image/Bitmap instance eliminates certain concurrency flaws. |