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 626775
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T19:27:18+00:00 2026-05-13T19:27:18+00:00

I am referencing an ashx file to show an image which is generated at

  • 0

I am referencing an ashx file to show an image which is generated at runtime:

<img alt="" style="height: 200px; width: 450px;" 
   id="Img1" src="<%= Url.Content ("~/Helpers/GetImage.ashx?side=Front") %>" />

Below is the code that creates the image. But I’m concerned that this is not the right approach; should I instead use a controller that returns an ImageResult?

if (!string.IsNullOrEmpty(context.Request.Params["side"]))
{

    string ImageType = string.Empty;
    if (context.Request.Params["side"].Equals("Front"))
    { 
        ImageType="FrontJpegBase64";
    }
    else
    {
        ImageType = "BackJpegBase64";
    }

    Log.Info(context.Session["FrontBase64"].ToString());
    byte[] imageByteArray = System.Convert.FromBase64String(context.Session[ImageType].ToString());
    System.IO.MemoryStream imageMemoryStream = new System.IO.MemoryStream(imageByteArray);
    try
    {
        using (System.Drawing.Image img = System.Drawing.Image.FromStream(imageMemoryStream))
        {
            img.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);
        }
    }
    catch (System.Exception ex)
    {
        Log.Error(ex, ": ConvertBytesToImage {0} ");
    }
    finally
    {
        imageMemoryStream.Close();
        context.Response.Flush();
    }
}
  • 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-13T19:27:19+00:00Added an answer on May 13, 2026 at 7:27 pm

    ashx is 7.23 times faster than using controller actions.

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

Sidebar

Related Questions

Referencing my Earlier Question , regarding downloading a file from a server and handling
Referencing this Fiddle ( http://jsfiddle.net/j5uGN ), how can I toggle a clicked image's border
If I avoid referencing assemblies that don't exist in the silverlight 2.0 runtime, will
Referencing this question: System.Reflection.Assembly.LoadFile Locks File System.IO.File.ReadAllBytes(path) wont work since it's not a standalone
I am referencing a COM dll file using CodeDom. The function within the dll
I have a console application which is referencing other projects in solution. When I
I have a self referencing table as covered in the doctrine documentation (which is
Hi Iam referencing in my ASP.NET application a managed C++ project which makes use
Referencing this post: ruby on rails average per day I'm getting the average per
Referencing Is Facebook an OpenID provider? here. This is kind of an additional question

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.