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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T05:48:59+00:00 2026-05-27T05:48:59+00:00

I wrote some simple REST service that get Stream from client. This Stream is

  • 0

I wrote some simple REST service that get Stream from client.
This Stream is an image that the client sent.
Now i need to translate the Stream back to Image.

How can i do it ?

The method that i wrote:

    public bool AnalyzingPicture( Stream image )
    {
        if( image == null )
        {
            // Is it write to write this down ? 
            throw new ArgumentNullException( "Error" );
        }
        else
        {
            // I need here to make the image translate ... 
        }
    }
  • 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-27T05:48:59+00:00Added an answer on May 27, 2026 at 5:48 am

    have a look here: http://msdn.microsoft.com/en-us/library/1kcb3wy4.aspx

    var image = Image.FromStream(yourStream);
    

    you can than easily save it to a file:

    image.Save("C:\img.jpg", ImageFormat.Jpeg);
    

    or to a byte[]:

    byte[] binImage;
    using (var mStream = new MemoryStream())
    {
        image.Save(mStream, ImageFormat.Jpeg);
        binImage = mStream.ToArray();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wrote a simple Sinatra app that generate an image using rmagick from some
I wrote some sort of console client for a simple application. To be more
First of all, I wrote a simple php page, that picks up some variables
I wrote a WCF service with a function that using absolute path to get
We need to provide a simple REST-like web service interface for communicating with a
I needed some simple string encryption, so I wrote the following code (with a
I'm using WCF to create some REST service. One of the Rest Service method
I have written a WCF service with the REST template that has the defaultOutgoingResponseFormat
So i have a assignment to write some REST client calls to a REST
I wrote a simple program to understand how objective-c works. This program is the

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.