How do I use system.drawing in. NET core?

Source: Internet
Author: User

You probably know System.Drawing, which is a popular API for performing graphical-related tasks, and it's not part of. NET Core. Originally designed as a cloud framework, the. NET core does not include non-cloud-related APIs. On the other hand,. NET Core is a cross-platform framework that does not contain any operating system-specific APIs, such as Active Directory activity on Windows. Furthermore,. NET core does not include many APIs like ConfigurationManager, which are part of the. NET Framework.

In my previous articles, I have described how to use these APIs with. NET core and. NET Standard applications.

To achieve this, there is a meta-package called Windows Compatibility Pack . However, this meta-package contains many Windows-related APIs (as package distribution). There is a System.Drawing.Common package in this meta-package.

To use the drawing feature in. NET core, add references in the NuGet package:

<PackageReference Include="System.Drawing.Common" Version="4.5.0-preview1-**" >

After this, you will be able to run code such as the following.

int x = 100;Image image = new Bitmap(2000, 1024);Graphics graph = Graphics.FromImage(image);graph.Clear(Color.Azure);Pen pen = new Pen(Brushes.Black);graph.DrawLines(pen, new Point[] { new Point(10,10), new Point(800, 900) });graph.DrawString("Hello drawing from .NET Core :)", new Font(new FontFamily("DecoType Thuluth"), 20,  FontStyle.Bold), Brushes.Blue, new PointF(150, 90));image.Save("graph.jpeg", System.Drawing.Imaging.ImageFormat.Png);

After you run the above code, you will see a slice like:

The following is a list of fonts that are currently supported:

AGA Arabesqueaga Arabesque desktopagency fbakhbar mtalgerianarialarial blackarial narrowarial rounded MT Boldbahnschriftbahnschrift lightbahnschrift semiboldbahnschrift semilightbaskerville old FaceBauhaus 93Bell MTBerlin Sans fbberlin Sans FB demibernard mt condensedblackadder itcbodoni mtbodoni MT Blackbodoni MT Condensedbodoni MT Poster Co Mpressedbold Italic artbook antiquabookman old stylebookshelf Symbol 7Bradley Hand itcbritannic boldbroadwaybrush Script M Tcalibricalibri Lightcalifornian fbcalisto Mtcambriacambria Mathcandaracastellarcentaurcenturycentury GothicCentury Schoolbookchillercolonna mtcomic Sans msconsolasconstantiacooper blackcopperplate Gothic boldcopperplate Gothic Lightcorbelcourier newcurlz mtdecotype naskhdecotype naskh extensionsdecotype naskh SpecialDecoType Naskh Swashesdecotype naskh variantsdecotype Thuluthdiwani bentdiwani letterdiwani Outline Shadeddiwani Simple OutlineDiwani Simple Outline 2Diwani simple Stripeddosisdubaidubai Lightdubai MediumebrimaedwarDian Script itcelephantengravers mteras Bold itceras Demi itceras light itceras Medium itcfarsi simple Boldfarsi simple Ou  Tlinefelix titlingfootlight MT lightfortefranklin Gothic bookfranklin Gothic demifranklin Gothic Demi Condfranklin Gothic Heavyfranklin Gothic mediumfranklin Gothic Medium condfreestyle scriptfrench Script Mtfzshutifzyaotigabriolagadugigaramondgeorgiagigigill Sans mtgill Sans mt Condensedgill Sans MT Ext condensed BoldGill Sa NS Ultra Boldgill Sans Ultra Bold condensedgloucester MT Extra condensedgoudy old Stylegoudy stouthaettenschweilerharlow S Olid italicharringtonhigh Tower texthololens MDL2 assetsimpactimprint MT shadowinformal romanitalic Outline ArtJavanese T Extjokermanjuice itckristen itckufi Extended outlinekufi Outline shadedkunstler scriptlatolato blackled Italic Fontleelawadee Uileelawadee UI semilightlisulucida brightlucida calligraphylucida Consolelucida FaxLucida Handwritinglucida sanslucida Sans typewriterlucida Sans unicodemagnetomaiandra gdmalgun GotHicmalgun Gothic Semilightmarlettmatura MT Script capitalsmicrosoft himalayamicrosoft jhengheimicrosoft JhengHei Lightmicrosoft Jhenghei uimicrosoft jhenghei UI lightmicrosoft New Tai luemicrosoft Office Preview fontmicrosoft PhagsPaMi Crosoft Sans serifmicrosoft Tai lemicrosoft yaheimicrosoft yahei lightmicrosoft yahei uimicrosoft YaHei UI LightMicrosoft Yi baitimingliu-extbmingliu_hkscs-extbmistralmodern No. 20Mongolian baitimonotype Corsivamonotype KoufiMontserratMS GOTHICMS Office symbol (DE-DE) BOLDMS office symbol (DE-DE) LIGHTMS office symbol EXTRALIGHTMS Office symbol regularms OFF Ice Symbol Semiboldms Office Symbol semilightms outlookms pgothicms Reference Sans serifms Reference specialtyms UI Gothic MT extramudir mtmv Bolimyanmar textniagara engravedniagara solidnirmala uinirmala UI semilightnsimsunocr A ExtendedOld Ant IC boldold antic decorativeold antic outlineold antic Outline shadedold 中文版 Text mtonyxoswaldpalace Script Mtpalatino LinotypepapyrusparchmentperpetuaperpetuA titling Mtplaybillpmingliu-extbpoor richardpristinapt bold Archpt bold BROKENPT bold Duskypt bold Headingpt bold MirrorP T Bold STARSPT separated baloonpt simple Bold ruledrage italicravierockwellrockwell condensedrockwell Extra BoldScript MT Boldsegoe MDL2 Assetssegoe printsegoe Scriptsegoe Uisegoe UI Blacksegoe UI Emojisegoe UI Historicsegoe UI LightSegoe UI Se Miboldsegoe UI Semilightsegoe UI Symbolshowcard gothicsimple Bold Jut outsimple indust outlinesimple Indust ShadedSimple O Utline Patsimsunsimsun-extbsitka Bannersitka Displaysitka headingsitka smallsitka SubheadingSitka TextSnap ITCSource Sans prosource Sans Pro blacksource Sans Pro  Semiboldstcaiyunstencilstfangsongsthupostkaitistlitistsongstxiheistxingkaistxinweistzhongsongsylfaensymboltahomatempus Sans itctimes New romantrebuchet mstw cen MTTW CEN MT CONDENSEDTW Cen MT condensed Extra Boldverdanaviner Hand Itcvivaldi Vladimir scriptwebdingswide latinwingdingswingdings 2Wingdings 3YouYuanYu gothicyu Gothic lightyu Gothic MediuMyu Gothic Uiyu Gothic UI Lightyu Gothic UI Semiboldyu Gothic UI Semilight 

Translate from: How to use System.Drawing in. NET Core?

How do I use system.drawing in. NET core?

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.