C # image and word throttling

Source: Internet
Author: User

Using system;
Using system. Collections. Generic;
Using system. LINQ;
Using system. text;
Using system. drawing;
Using system. IO;

Namespace Microsoft. Form. Base
{
Class imagetobyte
{
/// <Summary>
/// Convert the image into word-based throttling
/// </Summary>
/// <Param name = "IMG"> the image object to be converted </param>
/// <Returns> byte stream returned after conversion </returns>
Public static byte [] imgtobyt (image IMG)
{
Memorystream MS = new memorystream ();
Byte [] imagedata = NULL;
IMG. Save (MS, system. Drawing. imaging. imageformat. JPEG );
Imagedata = Ms. getbuffer ();
Return imagedata;
}
/// <Summary>
/// Convert byte streams to images
/// </Summary>
/// <Param name = "BYT"> byte stream to be converted </param>
/// <Returns> converted image object </returns>
Public static image byttoimg (byte [] BYT)
{
Memorystream MS = new memorystream (BYT );
Image IMG = image. fromstream (MS );
Return IMG;
}

//
/// <Summary>
/// Returns the byte stream of the Image Based on the image path []
/// </Summary>
/// <Param name = "ImagePath"> image path </param>
/// <Returns> returned byte stream </returns>
Private Static byte [] getimagebyte (string ImagePath)
{
Filestream files = new filestream (ImagePath, filemode. Open );
Byte [] imgbyte = new byte [files. Length];
Files. Read (imgbyte, 0, imgbyte. Length );
Files. Close ();
Return imgbyte;
}
}
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.