o
    Z#a                     @   s\   d Z ddlmZmZmZmZmZ G dd dZG dd dZG dd dZ	G d	d
 d
Z
dS )z]
(Experimental) WCK-style drawing interface operations

.. seealso:: :py:mod:`PIL.ImageDraw`
   )Image
ImageColor	ImageDraw	ImageFont	ImagePathc                   @   s   e Zd ZdZdddZdS )Penz"Stores an outline color and width.r      c                 C   s   t || _|| _d S N)r   getrgbcolorwidth)selfr   r   opacity r   0/usr/lib/python3/dist-packages/PIL/ImageDraw2.py__init__!   s   
zPen.__init__N)r   r   __name__
__module____qualname____doc__r   r   r   r   r   r          r   c                   @      e Zd ZdZdddZdS )BrushzStores a fill colorr   c                 C   s   t || _d S r	   )r   r
   r   )r   r   r   r   r   r   r   )   s   zBrush.__init__N)r   r   r   r   r   r   r   &   r   r   c                   @   r   )Fontz Stores a TrueType font and color   c                 C   s   t || _t||| _d S r	   )r   r
   r   r   truetypefont)r   r   filesizer   r   r   r   0   s   zFont.__init__N)r   r   r   r   r   r   r   -   r   r   c                   @   s|   e Zd ZdZdddZdd ZdddZd	d
 Zdd Zdd Z	dd Z
dd Zdd Zdd Zdd Zdd Zdd ZdS )Drawz4
    (Experimental) WCK-style drawing interface
    Nc                 C   s4   t |dst|||}t|| _|| _d | _d S )Nim)hasattrr   newr   r    drawimage	transform)r   r%   r   r   r   r   r   r   ;   s
   

zDraw.__init__c                 C   s   | j S r	   )r%   )r   r   r   r   flushB   s   z
Draw.flushc                 C   s   d  }}d}t |tr|j}|j}nt |tr|j}|j}t |tr&|j}nt |tr.|j}| jr<t|}|| j |dkrK| jj	|||d d S t
| j||||d d S )Nr   line)fillr   )r)   outline)
isinstancer   r   r   r   r&   r   Pathr$   r(   getattr)r   opxypenbrushr*   r)   r   r   r   r   renderE   s$   




zDraw.renderc                 C   s   |\}}dd|dd|f| _ dS )zSets a transformation offset.r       N)r&   )r   offsetxoffsetyoffsetr   r   r   settransform]   s   zDraw.settransformc                 G      | j d|||g|R   dS )z
        Draws an arc (a portion of a circle outline) between the start and end
        angles, inside the given bounding box.

        .. seealso:: :py:meth:`PIL.ImageDraw.ImageDraw.arc`
        arcNr2   r   r/   startendoptionsr   r   r   r9   b      zDraw.arcc                 G   r8   )z
        Same as :py:meth:`~PIL.ImageDraw2.Draw.arc`, but connects the end points
        with a straight line.

        .. seealso:: :py:meth:`PIL.ImageDraw.ImageDraw.chord`
        chordNr:   r;   r   r   r   r@   k   r?   z
Draw.chordc                 G      | j d|g|R   dS )z
        Draws an ellipse inside the given bounding box.

        .. seealso:: :py:meth:`PIL.ImageDraw.ImageDraw.ellipse`
        ellipseNr:   r   r/   r>   r   r   r   rB   t      zDraw.ellipsec                 G   rA   )z
        Draws a line between the coordinates in the ``xy`` list.

        .. seealso:: :py:meth:`PIL.ImageDraw.ImageDraw.line`
        r(   Nr:   rC   r   r   r   r(   |   rD   z	Draw.linec                 G   r8   )z
        Same as arc, but also draws straight lines between the end points and the
        center of the bounding box.

        .. seealso:: :py:meth:`PIL.ImageDraw.ImageDraw.pieslice`
        piesliceNr:   r;   r   r   r   rE      r?   zDraw.pieslicec                 G   rA   )a  
        Draws a polygon.

        The polygon outline consists of straight lines between the given
        coordinates, plus a straight line between the last and the first
        coordinate.


        .. seealso:: :py:meth:`PIL.ImageDraw.ImageDraw.polygon`
        polygonNr:   rC   r   r   r   rF      s   zDraw.polygonc                 G   rA   )zg
        Draws a rectangle.

        .. seealso:: :py:meth:`PIL.ImageDraw.ImageDraw.rectangle`
        	rectangleNr:   rC   r   r   r   rG      rD   zDraw.rectanglec                 C   s8   | j rt|}| | j  | jj|||j|jd dS )zw
        Draws the string at the given position.

        .. seealso:: :py:meth:`PIL.ImageDraw.ImageDraw.text`
        )r   r)   N)r&   r   r,   r$   textr   r   )r   r/   rH   r   r   r   r   rH      s   
z	Draw.textc                 C   s   | j j||jdS )z
        Return the size of the given string, in pixels.

        .. seealso:: :py:meth:`PIL.ImageDraw.ImageDraw.textsize`
        )r   )r$   textsizer   )r   rH   r   r   r   r   rI      s   zDraw.textsize)NNr	   )r   r   r   r   r   r'   r2   r7   r9   r@   rB   r(   rE   rF   rG   rH   rI   r   r   r   r   r    6   s    

			r    N)r    r   r   r   r   r   r   r   r   r    r   r   r   r   <module>   s   	