Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6595379
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T17:55:58+00:00 2026-05-25T17:55:58+00:00

I have a system where i upload single files to the webserver. Once uploaded

  • 0

I have a system where i upload single files to the webserver. Once uploaded i trigger a command to generate different sizes of the files.

The files uploaded are PSD and should be converted into pngs and jpgs.

The upload works fine and i can see the file in the directory. But when the “generate versions” command is fired i get this error

“file may be corrupted empty, or may contain a png image with a single dimension greater than 65535”

It’s the line

generatedFiles.Add(ImageBuilder.Current.Build(file, strDestinationPath, objResizeCommand, false, true));

The full command is

    public IList<string> GenerateVersions(decimal id, string file, string filename)
    {
        List<string> generatedFiles = new List<string>();

        foreach (var tCmdSets in db.IMG_SETTINGS_CMDSETS.Where("it.SETTINGS_FOLDER_ID = @folderid", new ObjectParameter("folderid", id)))
        {
            var strDestinationPath = ImageResizer.Util.PathUtils.RemoveExtension(Path.Combine(tmpDefaultFolder, tCmdSets.SETTINGS_CMDSET_DESTINATION, filename));
            ResizeSettings objResizeCommand =  new ResizeSettings(tCmdSets.SETTINGS_CMDSET_COMMAND);
            generatedFiles.Add(ImageBuilder.Current.Build(file, strDestinationPath, objResizeCommand, false, true));
        }
        return generatedFiles;
    }

and the variables fill until the error are:

file    "c:\\www\\upload\\masters\\Products\\upload_test.psd"   string
objResizeCommand    {?maxwidth=800&maxheight=600&format=jpg}         ImageResizer.ResizeSettings
strDestinationPath  "c:\\www\\upload\\converted\\items\\big\\upload_test"   string

here is the stack trace

[ArgumentException: Parameter is not valid.]
ImageResizer.ImageBuilder.LoadImage(Object source, ResizeSettings settings) in C:\Users\Administrator\Documents\resizer\Core\ImageBuilder.cs:186

[ImageCorruptedException (0x80004005): File may be corrupted, empty, or may contain a PNG image with a single dimension greater than 65,535 pixels.]
ImageResizer.ImageBuilder.LoadImage(Object source, ResizeSettings settings) in C:\Users\Administrator\Documents\resizer\Core\ImageBuilder.cs:190
ImageResizer.ImageBuilder.Build(Object source, Object dest, ResizeSettings settings, Boolean disposeSource, Boolean addFileExtension) in C:\Users\Administrator\Documents\resizer\Core\ImageBuilder.cs:306
imageController.Classes.ImageHandling.GenerateVersions2(String original) in C:\Users\tha\Documents\Visual Studio 2010\Projects\imageController\imageController\Classes\ImageHandling.cs:26
imageController.Controllers.UploadController.UploadSingleFile(Decimal id, HttpPostedFileBase objFile) in C:\Users\tha\Documents\Visual Studio 2010\Projects\imageController\imageController\Controllers\UploadController.cs:62
lambda_method(Closure , ControllerBase , Object[] ) +261
System.Web.Mvc.ActionMethodDispatcher.Execute(ControllerBase controller, Object[] parameters) +17
System.Web.Mvc.ReflectedActionDescriptor.Execute(ControllerContext controllerContext, IDictionary`2 parameters) +208
System.Web.Mvc.ControllerActionInvoker.InvokeActionMethod(ControllerContext controllerContext, ActionDescriptor actionDescriptor, IDictionary`2 parameters) +27
System.Web.Mvc.<>c__DisplayClass15.<InvokeActionMethodWithFilters>b__12() +55
System.Web.Mvc.ControllerActionInvoker.InvokeActionMethodFilter(IActionFilter filter, ActionExecutingContext preContext, Func`1 continuation) +263
System.Web.Mvc.<>c__DisplayClass17.<InvokeActionMethodWithFilters>b__14() +19
System.Web.Mvc.ControllerActionInvoker.InvokeActionMethodWithFilters(ControllerContext controllerContext, IList`1 filters, ActionDescriptor actionDescriptor, IDictionary`2 parameters) +191
System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName) +343
System.Web.Mvc.Controller.ExecuteCore() +116
System.Web.Mvc.ControllerBase.Execute(RequestContext requestContext) +97
System.Web.Mvc.ControllerBase.System.Web.Mvc.IController.Execute(RequestContext requestContext) +10
System.Web.Mvc.<>c__DisplayClassb.<BeginProcessRequest>b__5() +37
System.Web.Mvc.Async.<>c__DisplayClass1.<MakeVoidDelegate>b__0() +21
System.Web.Mvc.Async.<>c__DisplayClass8`1.<BeginSynchronous>b__7(IAsyncResult _) +12
System.Web.Mvc.Async.WrappedAsyncResult`1.End() +62
System.Web.Mvc.<>c__DisplayClasse.<EndProcessRequest>b__d() +50
System.Web.Mvc.SecurityUtil.<GetCallInAppTrustThunk>b__0(Action f) +7
System.Web.Mvc.SecurityUtil.ProcessInApplicationTrust(Action action) +22
System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) +60
System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest(IAsyncResult result) +9
System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +8897857
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +184
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T17:55:59+00:00Added an answer on May 25, 2026 at 5:55 pm

    SOLVED

    You need to add the following to you web.config file

    <configSections>
       <section name="resizer" type="ImageResizer.ResizerSection"/>
    </configSections>
    

    <resizer>
    <sizelimits  />
    <diskcache enabled="false" />
    <remotereader signingKey="ag383ht23sag#laf#lafF#oyfafqewt;2t w  eyfwfefwqefqw" allowAllSignedRequests="true" />
    <plugins>
      <add name="DiskCache" />
      <add name="PsdReader" />
      <add name="PrettyGifs" />
      <add name="Image404" />
      <add name="AnimatedGifs" />
      <add name="Gradient" />
      <add name="SimpleFilters" />
      <add name="RemoteReader" />
      <add name="AdvancedFilters" />
      <add name="CloudFront" />
      <add name="SeamCarving" />
      <add name="FolderResizeSyntax" />
      <add name="ImageHandlerSyntax" />
      <add name="MyCode.MyPlugins.SamplePlugin" />
      <add name="WhitespaceTrimmer" />
    </plugins>
    </resizer>
    

    <httpModules>
      <add name="ImageResizingModule" type="ImageResizer.InterceptModule"/>
    </httpModules>
    

    <modules runAllManagedModulesForAllRequests="true">
      <add name="ImageResizingModule" type="ImageResizer.InterceptModule"/>
    </modules>
    

    \T

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a system where employees can upload files. There are three ways Upload
I have a system where users upload image files. I only want specific users
I have a file upload system which, in PHP, limits to 20 files at
I have a system whereby users can upload sometimes large(100-200 MB) files from within
I have a system where people would upload something, then a single link would
I have an upload function in my system that stores the files on the
I have a system which sits on a web server and generates files on
I have an upload system ready, however I might be facing a very high
i have a doubt with the upload system in PHP . What is the
I have a PHP image upload system which allows a user to upload various

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.