The ImageResizer is a server-safe image processing library for .NET. It offers a comprehensive URL API and (several) highly-optimized processing pipelines based on GDI+, WIC, FreeImage, and WPF.

learn more… | top users | synonyms

0
votes
0answers
17 views

mvc3 Path.GetExtension issue when uploading file

I am getting an The requested operation cannot be performed on a file with a user-mapped section open error issue when uploading a file been stumped on this for a few days and have isolated the ...
2
votes
1answer
33 views

ImageResizer not working after deployment to IIS7.5 integrated mode, ashx style url works

I'm using ImageResize.net in an MVC3 site. It works correctly on my dev machine (using iis7.5 integrated mode) and does not require the use of ashx extension for resized images. I've deployed to ...
0
votes
1answer
15 views

Can't view non-image files using imageresizer s3reader plugin

I am attempting to use the ImageResizer s3Reader plugin to view non-image files (PDFs, ZIPs) using the ~/s3/ prefix. On my localhost this works wonderfully and as expected. However, as soon as I ...
1
vote
1answer
50 views

Place text on a picture

I wonder if there's an easy and clean solution to put a text on a picture non-destructively. For example: I have a picture I can call: http://localhost:7001/Content/img/defaultPicutre.png Having a ...
0
votes
1answer
34 views

Imageresizer diskcache plugin not working

I have an .aspx page which uses the ImageResizer library to resize an image and save to a local storage and it's location written to the response. ImageJob image = new ImageJob(masterPath, ...
0
votes
1answer
31 views

How do i specify the encoder to be used by imageresizer.ImageJob

am trying to use image resizer.ImageJob in my mvc 4 to crop and save image as it is being uploaded. here is my code. `//create cropping point information using the nameValueCollections specified in ...
0
votes
1answer
21 views

ImageResizer custom urls for bundled effects

We're looking to do something with ImageResizer that should be very easy but couldn't find any documentation on it. We'd like to bundle effects into a shorter url request. For example, instead of ...
1
vote
1answer
77 views

MVC4 Project and ImageResizer

Problem: MVC 4 test application with ImageResizer on any page access responds with "Could not load type 'ImageResizer.InterceptModule'" To test and understand how ImageResizer works a MVC4 project ...
0
votes
1answer
26 views

Image Resize - Fixed width and height with padding even image is smaller

When i upload 100x100 image, i cant make it 120x120 with whitespace filled for those extra 20px. If i upload 200x150, then 120x120 image is ok, filled whitespace. This is my code. var setting = new ...
0
votes
1answer
45 views

ImageResizer: web.config AzureReader configuration for cloud/development

I'm using ImageResizer (http://imageresizing.net/) and I've configured the AzureReader in the web.config file as follow: <resizer> <plugins> <add name="AzureReader" ...
0
votes
1answer
29 views

error when converting psd image using imageresizer library

I am getting following error when converting psd image using imageresizer library(http://imageresizing.net/) "A generic error occurred in GDI+" I am passing following parameters: ...
1
vote
1answer
65 views

Using asp.net ImageResizer api

I'm using ImageResizer (imageresizing.net) and I'm able to create resized images : public void DoMagic(string original) { string newImage = Server.MapPath("~/Images/test.png"); ...
0
votes
2answers
46 views

ImageResizer.Net AzureReader2 Plugin not working

I am using the ImageResizer.NET library to read images from the Azure Blob Storage and resize them. For that I needed to install AzureReader2 plugin and configure it in the web.config file. I have ...
0
votes
1answer
31 views

How to keep color profiles when converting images

When I resize images using imageresizing.net(FreeImageDecode) library in the output image the color profile sRGB is ignored. How to keep the color profile sRGB when converting? I have set the ...
2
votes
1answer
39 views

Watermark fails to show on image when using the imageresizer and WicBuilder

I am looking to use imageresizer for image and text overlays. However when I use the WicBuilder plugin and the watermark plugin together the watermark specified in the query string no longer shows. ...
1
vote
1answer
64 views

Using image resizer in crystal reports

Anyone know how or why the ImageResizer will not work in crystal reports? If you paste the URL xxxx.jpg.ashx?width=50 into a browser, works great. The exact same path shows nothing when used as a ...
0
votes
1answer
59 views

Image Resizing not working using s3reader

I m using Image resizer to resize the amazon images. I m not getting any errors but i m not also able to resize my image. I have tried to open the image url directly, it doesn't show any errors ...
0
votes
2answers
85 views

If using ImageResizer with Azure blobs do I need the AzureReader2 plugin?

I'm working on a personal project to manage users of my club, it's hosted on the free Azure package (for now at least), partly as an experiment to try out Azure. Part of creating their records is to ...
0
votes
1answer
63 views

Accessing Session in Authorization Event of Imageresizer

I'm trying to implement custom authorization in a MVC 4 application for ImageResizer (3.3.2) and everything works fine until I try to access session variables. In global.asax I've added the following ...
0
votes
1answer
77 views

serving images by id with imageresizer.net

I keep a mapping in database between an ID and the filename of the image uploaded on server. This is because I need to refer to images in HTML using an ID and not the actual filename on the disk (if ...
3
votes
1answer
71 views

PSD file not resizing properly

I am trying to bulk resize PSD images into jpg using http://imageresizing.net/ The PSD images are not getting converted properly. Help I have added reference to psdcomposer & freeImage and ...
0
votes
1answer
61 views

ImageResizer - The process cannot access the file because it is being used by another process

This line is throwing the error: ImageBuilder.Current.Build(imgURL, imgURL, resizeImg); Any idea why? public void setImgSize(string controlId, string filename) { decimal currentWidth = 0; ...
0
votes
0answers
25 views

imageresizing.net resource not found issue

I 'm currently using imageresizer.dll ver3.3.3 in my ASP.NET MVC 4 web project hosted on IIS7.5. I have included the imageresizer.mvc.dll in the bin folder and added the mvc shim plugin. ...
0
votes
1answer
55 views

ImageResizer not working with virtual directories

I am using the ImageResizer successfully on other areas of my site where the images are being served from a folder within the application (both .jpg?width=100 & .jpg.ashx?width=100 work), but ...
1
vote
2answers
128 views

ImageResizer - not resaving image if it's smaller than requested size

OK, I am trying to use ImageResizer component in my web app. I have following code: var versions = new Dictionary<string, string>(); //Define the versions to generate versions.Add("_001", ...
0
votes
1answer
239 views

HttpContext.Current not Resolving in MVC 4 Project

I am wanting to use ImageResizer (from ImageResizing dot net). I installed ImageResizer for MVC via NuGet. But when I go to use the following code from the example: //Loop through each uploaded file ...
1
vote
1answer
64 views

ImageResizer not working on <img> Tags

I am using ImageResizer from ImageResizing.net. Through my code, I am able to programatically use the plugin using this code: img.Attributes.Add("src", ...
1
vote
1answer
127 views

ImageResizer.net with Cache Plugin causing duplicate output cache

I have a strange issue, whereby when I enable output caching in Orchard CMS and have ImageResizer.net cache plugin enabled, I get duplicated page content (full DOM). Just for reference, I am ...
0
votes
1answer
50 views

How to verify amazon url being called for Imageresizer using S3Reader?

I am using the S3Reader plugin with ImageResizer to read deliver resized images from Amazon. I am having troubles getting it working in my production environment mainly because I am unable to see ...
1
vote
2answers
208 views

ImageResizer for Azure using AzureReader2 plugin not resizing

EDIT I got it to work however I had to add the RemoteReader plugin. When I remove the AzureReader2 plugin from my project it still works which makes sense however what is the AzureReader2 plugin ...
0
votes
1answer
88 views

How can I prevent Imageresizer using the Cloudfront plugin creating invalid urls?

I host my images on Amazon S3 and only store one image size. Up until now I have successfully been using Imageresizer to resize my images per request. Now I need to introduce the Cloudfront CDN, ...
2
votes
1answer
518 views

Can't reference system.drawing.dll

i'm trying to resize images with ImageResizer, but keep getting a compilation error "Error 1 The type 'System.Drawing.Bitmap' is defined in an assembly that is not referenced. You must add a ...
0
votes
1answer
72 views

ImageResizer libray: plugins fail to load unless the project is rebuilt

I'm using the ImageResizer library (version 3.2.4) in a ASP.NET MVC 4 project, with the following plug-ins: Watermark, MvcRoutingShim, DiskCache and SimpleFilters. Everything works fine when I lauch ...
0
votes
1answer
109 views

ImageResizer and image files without an extension

I've been using ImageResizer.net just fine in our web app, but now I need it to resize and serve images that don't (and cannot) have a file extension, like this one: ...
0
votes
0answers
123 views

mvc3 ImageResizer

I downloaded the Nugent ImageResizer and I am trying to resize a picture on upload following an example on this page http://imageresizing.net/docs/managed but I can't seen to put this in a Var or ...
3
votes
1answer
264 views

Correct way to cache images in MVC app

I am using the ImageResizing library, to resize and deliver my image in my C# Mvc application. One thing that isn't happening though is my image aren't getting cached. I am struggling to understand ...
0
votes
1answer
34 views

ImageResizer adjusting white balance

Been playing with StudioJS wrapper for ImageResizer. Can ImageResizer adjust the white balance relative to a color? Ultimately, I want the user to be able to click an area in the image that should be ...
1
vote
1answer
102 views

Correct way to skip authorization with ImageResizer

HttpConext object has SkipAutorization property that is used to disable the authorization check in UrlAuthorizationModule, which is a part of standard asp.net pipeline. ImageResizer calls ...
2
votes
1answer
249 views

ImageResizer/System.Drawing and CMYK JPEGs

I'm doing some simple image resizing and rotation in an ASP.NET MVC 4 project, using the ImageResizer library. The problem is that when I use it to process 32-bpp CMYK JPEG files, it fails with an ...
-1
votes
2answers
113 views

How to keep content type as png instead of x-png after image resizing with imageresizer.dll

I am using image resizing in my C# application to resize png images(imageresizer.dll at http://imageresizing.net/). I noticed that when png images are resized they are converted to to x-png If I go ...
0
votes
1answer
123 views

Image Resizer watermark plugin - dynamically position text and modify font size

I am using ImageResizer for an image editing tool. I have a text layer and need to dynamically modify the font size and the position via the querystring, but am unable to do so. Is this possible? I ...
1
vote
1answer
176 views

Imageresizer azure problems

I'm using ImageResizer.net library for image resizing on a site I've been working on. I just pushed all the code to an azure website, and the images (stored in blobs) display locally with all my ...
0
votes
1answer
267 views

does telerik kendo work with ImageResizer in MVC?

been using kendo for a while successfully in my MVC project, and just decided to add ImageResizer as well. Once i installed ImageResizer as well as it's MvcRoutingShim via nuget, it broke my kendo ...
-1
votes
1answer
181 views

Why does imageresizer not work for img tags and only for direct url's?

I've just added imageresizer to my MVC4 app, but for an image tag as below, it does no resizing. If I paste the url directly into my browser, it gets resized. <img class="store-display-image" ...
-1
votes
1answer
49 views

Hello needed in setting the resizing and croping options correctly

Hello I am using your resizer tool, its works very well, I am stuck at one place and need your suggestion to help me choose the correct image resizer settings Everytings works fine when image is ...
0
votes
1answer
82 views

ImageResizer crashing on large images

Im using the awesome ImageResizing component and am experiencing an "Out of memory" error when trying to upload and read images that are about 100MB in size. It may seem large, but we're a printers so ...
0
votes
1answer
191 views

Permission denied: 'CreateObject' - ImageResizer

I just tried to install imageresizing.net com object. I'm using the following code to create the object. set c = CreateObject("ImageResizer.Configuration.Config") c.BuildImage ...
1
vote
1answer
143 views

Secure serving of images in combination with using ImageResizer

[This is a followup / cleaned question regarding earlier discussion here with Computer Linguist, hope i specified this enough] Can ImageResizer grab files outside site root and serve them(Thus ...
3
votes
2answers
182 views

ImageResizer disposing provided Image reference

We are using the image resizer from imageresizing.net and are seeing some weird behaviour. When we read an image in from a stream and then resize the image we can no longer access the properties of ...
0
votes
1answer
157 views

Image Resizer User.Identity in eventhandler

Added an AuthorizeImage eventhandler to image access restriction. Noticed the following when i was trying to check the users name and authenticationstatus: Below will not result in exception, but ...

1 2