C # Gets the resource picture from the class library and saves the picture resource to the class library

Source: Internet
Author: User

/// <summary>    ///get a picture of a resource/// </summary>     Public classAssemblyhelper {#regionConstant/// <summary>        ///Assembly Name/// </summary>        Private Static stringCurrentassemblyname =assembly.getexecutingassembly (). GetName ().        Name; #endregion        #regionVariable/// <summary>        ///Current Assembly/// </summary>        Private StaticAssembly currentassembly =assembly.getexecutingassembly (); #endregion        #regionMethod/// <summary>        ///find the appropriate picture in the embedded resource file/// </summary>        /// <param name= "name" ></param>        /// <returns></returns>         Public StaticImage GetImage (stringname) {Image img=NULL; Try            {                if(!string. IsNullOrEmpty (name)) {StringBuilder SB=NewStringBuilder (); if(name[0] !='.') {sb. Append (Assemblyhelper.currentassemblyname+"."+name); }                    Else{sb. Append (Assemblyhelper.currentassemblyname+name); }                    using(System.IO.Stream Stream =Currentassembly.getmanifestresourcestream (sb.) ToString ())) {if(Stream! =NULL) {img=Image.fromstream (stream); }                    }                }            }            Catch(Exception ex) {}returnimg; }        #endregion    }

C # Gets the resource picture from the class library and saves the picture resource to the class library

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.