DrawLine
DrawLine(Pen, Point, Point)
يرسم خطًا يربط بين اثنينPoint
الهياكل .
public void DrawLine(Pen pen, Point point1, Point point2)
معامل | يكتب | وصف |
---|
pen | Pen | Pen التي تحدد لون الخط وعرضه ونمطه. |
point1 | Point | Point الهيكل الذي يمثل النقطة الأولى للاتصال. |
point2 | Point | Point الهيكل الذي يمثل النقطة الثانية للاتصال. |
استثناءات
استثناء | حالة |
---|
ArgumentNullException | pen باطل. |
أمثلة
يستخدم هذا المثال فئة الرسومات لإنشاء أشكال بدائية على سطح الصورة. لتوضيح العملية ، يقوم المثال بإنشاء صورة جديدة بتنسيق PNG ورسم أشكال بدائية على سطح الصورة باستخدام طرق الرسم المكشوفة بواسطة فئة الرسومات
[C#]
// ينشئ مثيلاً من FileStream
using (System.IO.FileStream stream = new System.IO.FileStream(@"C:\temp\output.png", System.IO.FileMode.Create))
{
// قم بإنشاء مثيل لـ PngOptions وقم بتعيين خصائصه المختلفة
Aspose.Imaging.ImageOptions.PngOptions pngOptions = new Aspose.Imaging.ImageOptions.PngOptions();
// تعيين المصدر لخيارات PngOptions
pngOptions.Source = new Aspose.Imaging.Sources.StreamSource(stream);
// إنشاء مثيل للصورة
using (Aspose.Imaging.Image image = Aspose.Imaging.Image.Create(pngOptions, 500, 500))
{
// إنشاء وتهيئة مثيل لفئة الرسومات
Aspose.Imaging.Graphics graphics = new Aspose.Imaging.Graphics(image);
// مسح سطح الرسومات
graphics.Clear(Aspose.Imaging.Color.Wheat);
// ارسم قوسًا بتحديد كائن القلم ذي اللون الأسود ،
// أ مستطيل يحيط بالقوس وزاوية البدء وزاوية المسح
graphics.DrawArc(new Aspose.Imaging.Pen(Aspose.Imaging.Color.Black, 2), new Aspose.Imaging.Rectangle(200, 200, 100, 200), 0, 300);
// ارسم بيزير عن طريق تحديد كائن القلم ذي اللون الأزرق ونقاط التنسيق.
graphics.DrawBezier(new Aspose.Imaging.Pen(Aspose.Imaging.Color.Blue, 2), new Aspose.Imaging.Point(250, 100), new Aspose.Imaging.Point(300, 30), new Aspose.Imaging.Point(450, 100), new Aspose.Imaging.Point(235, 25));
// ارسم منحنى عن طريق تحديد كائن القلم ذي اللون الأخضر ومجموعة من النقاط
graphics.DrawCurve(new Aspose.Imaging.Pen(Aspose.Imaging.Color.Green, 2), new[] { new Aspose.Imaging.Point(100, 200), new Aspose.Imaging.Point(100, 350), new Aspose.Imaging.Point(200, 450) });
// ارسم شكل بيضاوي باستخدام كائن القلم والمستطيل المحيط
graphics.DrawEllipse(new Aspose.Imaging.Pen(Aspose.Imaging.Color.Yellow, 2), new Aspose.Imaging.Rectangle(300, 300, 100, 100));
//ارسم خطا
graphics.DrawLine(new Aspose.Imaging.Pen(Aspose.Imaging.Color.Violet, 2), new Aspose.Imaging.Point(100, 100), new Aspose.Imaging.Point(200, 200));
// ارسم مقطع دائري
graphics.DrawPie(new Aspose.Imaging.Pen(Aspose.Imaging.Color.Silver, 2), new Aspose.Imaging.Rectangle(new Aspose.Imaging.Point(200, 20), new Aspose.Imaging.Size(200, 200)), 0, 45);
// ارسم مضلعًا بتحديد كائن القلم ذي اللون الأحمر ومجموعة من النقاط
graphics.DrawPolygon(new Aspose.Imaging.Pen(Aspose.Imaging.Color.Red, 2), new[] { new Aspose.Imaging.Point(20, 100), new Aspose.Imaging.Point(20, 200), new Aspose.Imaging.Point(220, 20) });
// ارسم مستطيلاً
graphics.DrawRectangle(new Aspose.Imaging.Pen(Aspose.Imaging.Color.Orange, 2), new Aspose.Imaging.Rectangle(new Aspose.Imaging.Point(250, 250), new Aspose.Imaging.Size(100, 100)));
// إنشاء كائن SolidBrush وضبط خصائصه المختلفة
Aspose.Imaging.Brushes.SolidBrush brush = new Aspose.Imaging.Brushes.SolidBrush();
brush.Color = Color.Purple;
brush.Opacity = 100;
// ارسم سلسلة باستخدام كائن SolidBrush والخط ، عند نقطة معينة
graphics.DrawString("This image is created by Aspose.Imaging API", new Aspose.Imaging.Font("Times New Roman", 16), brush, new Aspose.Imaging.PointF(50, 400));
// احفظ جميع التغييرات.
image.Save();
}
}
أنظر أيضا
DrawLine(Pen, PointF, PointF)
يرسم خطًا يربط بين اثنينPointF
الهياكل .
public void DrawLine(Pen pen, PointF point1, PointF point2)
معامل | يكتب | وصف |
---|
pen | Pen | Pen التي تحدد لون الخط وعرضه ونمطه. |
point1 | PointF | PointF الهيكل الذي يمثل النقطة الأولى للاتصال. |
point2 | PointF | PointF الهيكل الذي يمثل النقطة الثانية للاتصال. |
استثناءات
استثناء | حالة |
---|
ArgumentNullException | pen باطل. |
أنظر أيضا
DrawLine(Pen, int, int, int, int)
يرسم خطًا يربط بين النقطتين المحددتين بواسطة أزواج الإحداثيات.
public void DrawLine(Pen pen, int x1, int y1, int x2, int y2)
معامل | يكتب | وصف |
---|
pen | Pen | Pen التي تحدد لون الخط وعرضه ونمطه. |
x1 | Int32 | إحداثي x للنقطة الأولى. |
y1 | Int32 | إحداثي ص للنقطة الأولى. |
x2 | Int32 | إحداثي x للنقطة الثانية. |
y2 | Int32 | إحداثي ص للنقطة الثانية. |
استثناءات
استثناء | حالة |
---|
ArgumentNullException | pen باطل. |
أنظر أيضا
DrawLine(Pen, float, float, float, float)
يرسم خطًا يربط بين النقطتين المحددتين بواسطة أزواج الإحداثيات.
public void DrawLine(Pen pen, float x1, float y1, float x2, float y2)
معامل | يكتب | وصف |
---|
pen | Pen | Pen التي تحدد لون الخط وعرضه ونمطه. |
x1 | Single | إحداثي x للنقطة الأولى. |
y1 | Single | إحداثي ص للنقطة الأولى. |
x2 | Single | إحداثي x للنقطة الثانية. |
y2 | Single | إحداثي ص للنقطة الثانية. |
استثناءات
استثناء | حالة |
---|
ArgumentNullException | pen باطل. |
أنظر أيضا