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

  • SEARCH
  • Home
  • 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 9268541
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T14:50:30+00:00 2026-06-18T14:50:30+00:00

I am getting the Parameter is not valid.at System.Drawing.Bitmap..ctor(Stream stream) in my code. I

  • 0

I am getting the “Parameter is not valid.at System.Drawing.Bitmap..ctor(Stream stream)”
in my code.

I am using the Following lines in my code,

System.Drawing.Bitmap image = new System.Drawing.Bitmap(fileUpload1.PostedFile.InputStream);

I don’t find anything wrong in this code.

  • 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-06-18T14:50:31+00:00Added an answer on June 18, 2026 at 2:50 pm

    In some cases, Bitmap requires a seekable stream. Try:

    Bitmap image;
    using(var ms = new MemoryStream()) {
        fileUpload1.PostedFile.InputStream.CopyTo(ms);
        ms.Position = 0;
        image = new System.Drawing.Bitmap(ms);
    }
    

    However. I must also note that this looks like ASP.NET; System.Drawing is not supported in ASP.NET: see here

    Classes within the System.Drawing namespace are not supported for use within a Windows or ASP.NET service. Attempting to use these classes from within one of these application types may produce unexpected problems, such as diminished service performance and run-time exceptions. For a supported alternative, see Windows Imaging Components.

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

Sidebar

Related Questions

Having trouble with the following segment of code. I'm getting a parameter count mismatch.
An unhandled exception of type 'System.ArgumentException' occurred in System.Drawing.dll Additional information: Parameter is not
We're getting a server error saying Parameter count does not match Parameter Value count.
I am getting error of System.MissingMethodException after I have an optional parameter in one
i am using ExecuteOracleNonQuery and getting rowid as output parameter.How can i optimize subsequent
In my LINQ-to-SQL DAL, I'm getting a Specified Cast Was Not Valid. Here is
I keep getting an error saying my value is not positioned on a valid
Getting the following error under Jenkins. Hand builds on the same machine using Xcode
I am working on getting parameter from a function string. For example, my function
I have a simple .pp / puppet file, and I'm getting Parameter provider failed:

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.