IronSoftware.System.Drawing
v2024.12.3
Ironsoftware.Drawing ist eine Open-Source-Bibliothek, die ursprünglich von Iron Software entwickelt wurde, mit der C# Software-Ingenieure System.Drawing.Common in .NET-Projekten ersetzen können.
IronSoftware.Drawing.AnyBitmap und folgen beliebten Bitmap/Image -Formaten unterstützt:| Implizite Casting -Unterstützung | Zu AnyBitmap unterstützt | Von AnyBitmap unterstützt |
|---|---|---|
System.Drawing.Bitmap | ✅ | ✅ |
System.Drawing.Image | ✅ | ✅ |
SkiaSharp.SKBitmap | ✅ | ✅ |
SkiaSharp.SKImage | ✅ | ✅ |
SixLabors.ImageSharp | ✅ | ✅ |
Microsoft.Maui.Graphics.Platform.PlatformImage | ✅ | ✅ |
IronSoftware.Drawing.Color und den folgenden beliebten Farbformaten unterstützt:| Implizite Casting -Unterstützung | Zu Color unterstützt | Aus Color |
|---|---|---|
SkiaSharp.SKColor | ✅ | ✅ |
SixLabors.ImageSharp.Color | ✅ | ✅ |
SixLabors.ImageSharp.PixelFormats | ✅ | ✅ |
IronSoftware.Drawing.Rectangle .| Implizite Casting -Unterstützung | Zum Rectangle unterstützt | Aus Rectangle unterstützt | Zu RectangleF unterstützt | Aus RectangleF unterstützt |
|---|---|---|---|---|
System.Drawing.Rectangle | ✅ | ✅ | ||
System.Drawing.RectangleF | ✅ | ✅ | ||
SkiaSharp.SKRect | ✅ | ✅ | ||
SkiaSharp.SKRectI | ✅ | ✅ | ||
SixLabors.ImageSharp.Rectangle | ✅ | ✅ | ||
SixLabors.ImageSharp.RectangleF | ✅ | ✅ |
IronSoftware.Drawing.Size und folgt beliebte Größenformate unterstützt:| Implizite Casting -Unterstützung | Zur Size unterstützt | Von Size unterstützt | Zu SizeF unterstützt | Von SizeF unterstützt |
|---|---|---|---|---|
System.Drawing.Size | ✅ | ✅ | ||
System.Drawing.SizeF | ✅ | ✅ | ||
SkiaSharp.SKSize | ✅ | ✅ | ||
SkiaSharp.SKSizeI | ✅ | ✅ | ||
SixLabors.ImageSharp.Size | ✅ | ✅ | ||
SixLabors.ImageSharp.SizeF | ✅ | ✅ | ||
Microsoft.Maui.Graphics.Size | ✅ | ✅ | ||
Microsoft.Maui.Graphics.SizeF | ✅ | ✅ |
IronSoftware.Drawing.Font und den folgenden beliebten Schriftformaten unterstützt:| Implizite Casting -Unterstützung | Zu Font unterstützt | Von Font unterstützt |
|---|---|---|
System.Drawing.Font | ✅ | ✅ |
SkiaSharp.SKFont | ✅ | ✅ |
SixLabors.Fonts.Font | ✅ | ✅ |
IronSoftware.Drawing.Point und IronSoftware.Drawing.PointF und die folgenden unterstützten:| Implizite Casting -Unterstützung | Point | Von Point unterstützt | Zu PointF unterstützt | Von PointF unterstützt |
|---|---|---|---|---|
System.Drawing.Point | ✅ | ✅ | ||
System.Drawing.PointF | ✅ | ✅ | ||
SixLabors.ImageSharp.Point | ✅ | ✅ | ||
SixLabors.ImageSharp.PointF | ✅ | ✅ | ||
Microsoft.Maui.Graphics.Point | ✅ | ✅ | ||
Microsoft.Maui.Graphics.PointF | ✅ | ✅ | ||
SkiaSharp.SKPoint | ✅ | ✅ | ||
SkiaSharp.SKPointI | ✅ | ✅ |
Installieren des Ironsoftware.Drawing Nuget -Pakets ist schnell und einfach, bitte installieren Sie das Paket wie folgt:
PM> Install-Package IronSoftware.System.Drawing
Alternativ können Sie direkt von der offiziellen Nuget -Website herunterladen.
Nach der Installation können Sie using IronSoftware.Drawing; oben in Ihrem C# -Code.
AnyBitmap -Code using IronSoftware . Drawing ;
// Create a new AnyBitmap object
var bitmap = AnyBitmap . FromFile ( "FILE_PATH" ) ;
bitmap . SaveAs ( "result.jpg" ) ;
var bytes = bitmap . ExportBytes ( ) ;
var resultExport = new System . IO . MemoryStream ( ) ;
bitmap . ExportStream ( resultExport , AnyBitmap . ImageFormat . Jpeg , 100 ) ;
// Casting between System.Drawing.Bitmap and IronSoftware.Drawing.AnyBitmap
System . Drawing . Bitmap image = new System . Drawing . Bitmap ( "FILE_PATH" ) ;
IronSoftware . Drawing . AnyBitmap anyBitmap = image ;
anyBitmap . SaveAs ( "result-from-casting.png" ) ;
// Creates a Multi-page Tiff-style AnyBitmap from an Image array
List < AnyBitmap > bitmaps = new List < AnyBitmap > ( )
{
AnyBitmap . FromFile ( "FILE_PATH_1" ) ,
AnyBitmap . FromFile ( "FILE_PATH_2" )
} ;
AnyBitmap anyBitmap = AnyBitmap . CreateMultiFrameTiff ( bitmaps ) ;
// Creates a Multi-page Tiff-style AnyBitmap from a fully qualified file path array
List < string > imagePaths = new List < string > ( )
{
"FILE_PATH_1" ,
"FILE_PATH_2"
} ;
AnyBitmap anyBitmap = AnyBitmap . CreateMultiFrameTiff ( imagePaths ) ;
// Manipulate image frames
int frameCount = anyBitmap . FrameCount ;
List < AnyBitmap > frames = ( List < AnyBitmap > ) anyBitmap . GetAllFrames ;Color using IronSoftware . Drawing ;
// Create a new Color object
Color fromHex = new Color ( "#191919" ) ;
Color fromRgb = new Color ( 255 , 255 , 0 ) ;
Color fromEnum = Color . Crimson ;
// Casting between System.Drawing.Color and IronSoftware.Drawing.Color
System . Drawing . Color drawingColor = System . Drawing . Color . Red ;
IronSoftware . Drawing . Color ironColor = drawingColor ;
ironColor . A ;
ironColor . R ;
ironColor . G ;
ironColor . B ;
// Luminance is a value from 0 (black) to 100 (white) where 50 is the perceptual "middle grey"
ironColor . GetLuminance ( ) ;
// Gets the 32-bit ARGB value of this Color structure.
ironColor . ToArgb ( ) ;Rectangle using IronSoftware . Drawing ;
// Create a new Rectangle object
Rectangle rectangle = new Rectangle ( 5 , 5 , 50 , 50 ) ;
// Create a new Rectangle object with MeasurementUnits
Rectangle mmRectangle = new Rectangle ( 5 , 5 , 50 , 50 , MeasurementUnits . Millimeters ) ;
// Convert between MeasurementUnits
Rectangle pxRectangle = mmRectangle . ConvertTo ( MeasurementUnits . Millimeters ) ;
// Or specify DPI
Rectangle pxRectangleWithDPI = mmRectangle . ConvertTo ( MeasurementUnits . Millimeters , 200 ) ;
// Casting between System.Drawing.Rectangle and IronSoftware.Drawing.Rectangle
System . Drawing . Rectangle rectangle = new System . Drawing . Rectangle ( 10 , 10 , 150 , 150 ) ;
IronSoftware . Drawing . Rectangle ironRectangle = rectangle ;
ironRectangle . X ;
ironRectangle . Y ;
ironRectangle . Width ;
ironRectangle . Height ;Size using IronSoftware . Drawing ;
// Create a new Size object
Size size = new Size ( 50 , 50 ) ;
// Casting between System.Drawing.Size and IronSoftware.Drawing.Size
System . Drawing . Size systemSize = new System . Drawing . Size ( 150 , 150 ) ;
IronSoftware . Drawing . Size ironSize = systemSize ;
ironSize . Width ;
ironSize . Height ;Font using IronSoftware . Drawing ;
// Create a new Font object
Font font = new Font ( "Times New Roman" , FontStyle . Italic | FontStyle . Bold , 30 ) ;
// Casting between System.Drawing.Font and IronSoftware.Drawing.Font
System . Drawing . Font drawingFont = new System . Drawing . Font ( "Courier New" , 30 ) ;
IronSoftware . Drawing . Font ironFont = drawingFont ;
ironFont . FamilyName ;
ironFont . Style ;
ironFont . Size ;
ironFont . Italic ;
ironFont . Bold ; Weitere Informationen zu Eisensoftware finden Sie auf unserer Website: https://ironsoftware.com/
Für allgemeine Unterstützung und technische Anfragen senden Sie uns bitte eine E -Mail an: [email protected]