• Articles
  • API Documentation
Search Results for

    Show / Hide Table of Contents
    • SixLabors.ImageSharp.Drawing
      • ArcLineSegment
      • ClipPathExtensions
      • ClippingOperation
      • ComplexPolygon
      • CubicBezierLineSegment
      • EllipsePolygon
      • EmptyPath
      • EndCapStyle
      • ILineSegment
      • IntersectionRule
      • IPath
      • IPathCollection
      • ISimplePath
      • JointStyle
      • LinearLineSegment
      • OutlinePathExtensions
      • Path
      • PathBuilder
      • PathCollection
      • PathExtensions
      • PathTypes
      • Polygon
      • RectangularPolygon
      • RegularPolygon
      • SegmentInfo
      • Star
      • TextBuilder
    • SixLabors.ImageSharp.Drawing.Processing
      • Brush
      • BrushApplicator<TPixel>
      • Brushes
      • ClearExtensions
      • ClearPathExtensions
      • ClearRectangleExtensions
      • ClipPathExtensions
      • ColorStop
      • DrawBezierExtensions
      • DrawingOptions
      • DrawingOptionsDefaultsExtensions
      • DrawLineExtensions
      • DrawPathCollectionExtensions
      • DrawPathExtensions
      • DrawPolygonExtensions
      • DrawRectangleExtensions
      • DrawTextExtensions
      • EllipticGradientBrush
      • FillExtensions
      • FillPathBuilderExtensions
      • FillPathCollectionExtensions
      • FillPathExtensions
      • FillPolygonExtensions
      • FillRectangleExtensions
      • GradientBrush
      • GradientRepetitionMode
      • ImageBrush
      • LinearGradientBrush
      • PathGradientBrush
      • PatternBrush
      • PatternPen
      • Pen
      • PenOptions
      • Pens
      • RadialGradientBrush
      • RecolorBrush
      • RichTextOptions
      • RichTextRun
      • ShapeGraphicOptionsDefaultsExtensions
      • ShapeOptions
      • SolidBrush
      • SolidPen
    • SixLabors.ImageSharp.Drawing.Processing.Processors.Drawing
      • ClipPathProcessor
      • DrawPathProcessor
      • FillPathProcessor
      • FillProcessor
    • SixLabors.ImageSharp.Drawing.Processing.Processors.Text
      • DrawTextProcessor
    • SixLabors.ImageSharp.Drawing.Shapes.PolygonClipper
      • ClipperException
      • ClippingType

    Class SolidPen

    Defines a pen that can apply a pattern to a line with a set brush and thickness.

    Inheritance
    Object
    Pen
    SolidPen
    Inherited Members
    Pen.StrokeFill
    Pen.StrokeWidth
    Pen.StrokePattern
    Pen.JointStyle
    Pen.EndCapStyle
    Pen.GeneratePath(IPath)
    Pen.Equals(Nullable<Object>)
    Pen.GetHashCode()
    Namespace: SixLabors.ImageSharp.Drawing.Processing
    Assembly: SixLabors.ImageSharp.Drawing.dll
    Syntax
    public class SolidPen : Pen

    Constructors

    | Improve this Doc View Source

    SolidPen(Color)

    Initializes a new instance of the SolidPen class.

    Declaration
    public SolidPen(Color color)
    Parameters
    Type Name Description
    Color color

    The color.

    | Improve this Doc View Source

    SolidPen(Color, Single)

    Initializes a new instance of the SolidPen class.

    Declaration
    public SolidPen(Color color, float width)
    Parameters
    Type Name Description
    Color color

    The color.

    Single width

    The width.

    | Improve this Doc View Source

    SolidPen(Brush)

    Initializes a new instance of the SolidPen class.

    Declaration
    public SolidPen(Brush strokeFill)
    Parameters
    Type Name Description
    Brush strokeFill

    The brush used to fill the stroke outline.

    | Improve this Doc View Source

    SolidPen(Brush, Single)

    Initializes a new instance of the SolidPen class.

    Declaration
    public SolidPen(Brush strokeFill, float strokeWidth)
    Parameters
    Type Name Description
    Brush strokeFill

    The brush used to fill the stroke outline.

    Single strokeWidth

    The stroke width in px units.

    | Improve this Doc View Source

    SolidPen(PenOptions)

    Initializes a new instance of the SolidPen class.

    Declaration
    public SolidPen(PenOptions options)
    Parameters
    Type Name Description
    PenOptions options

    The pen options.

    Methods

    | Improve this Doc View Source

    Equals(Pen)

    Declaration
    public override bool Equals(Pen other)
    Parameters
    Type Name Description
    Pen other
    Returns
    Type Description
    Boolean
    Overrides
    Pen.Equals(Pen)
    | Improve this Doc View Source

    GeneratePath(IPath, Single)

    Applies the styling from the pen to a path and generate a new path with the final vector.

    Declaration
    public override IPath GeneratePath(IPath path, float strokeWidth)
    Parameters
    Type Name Description
    IPath path

    The source path

    Single strokeWidth

    The stroke width in px units.

    Returns
    Type Description
    IPath

    The IPath with the pen styling applied.

    Overrides
    Pen.GeneratePath(IPath, Single)
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX