o
    e                     @  sh   d Z ddlm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`
    )annotations   )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   A/var/www/html/venv/lib/python3.10/site-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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   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r4   r   r1   startendoptionsr   r   r   r:   b      zDraw.arcc                 G  r9   )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   rA   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   r1   r?   r   r   r   rC   t      zDraw.ellipsec                 G  rB   )z
        Draws a line between the coordinates in the ``xy`` list.

        .. seealso:: :py:meth:`PIL.ImageDraw.ImageDraw.line`
        r*   Nr;   rD   r   r   r   r*   |   rE   z	Draw.linec                 G  r9   )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   rF      r@   zDraw.pieslicec                 G  rB   )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;   rD   r   r   r   rG      s   zDraw.polygonc                 G  rB   )zg
        Draws a rectangle.

        .. seealso:: :py:meth:`PIL.ImageDraw.ImageDraw.rectangle`
        	rectangleNr;   rD   r   r   r   rH      rE   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   r1   rI   r   r   r   r   rI      s   
z	Draw.textc                 C  s0   | j rt|}| | j  | jj|||jdS )z
        Returns bounding box (in pixels) of given text.

        :return: ``(left, top, right, bottom)`` bounding box

        .. seealso:: :py:meth:`PIL.ImageDraw.ImageDraw.textbbox`
        r   )r(   r   r.   r&   textbboxr   rJ   r   r   r   rL      s   
zDraw.textbboxc                 C  s   | j j||jdS )z
        Returns length (in pixels) of given text.
        This is the amount by which following text should be offset.

        .. seealso:: :py:meth:`PIL.ImageDraw.ImageDraw.textlength`
        rK   )r&   
textlengthr   )r   rI   r   r   r   r   rM      s   zDraw.textlength)NNr   )r   r   r   r   r   r)   r4   r8   r:   rA   rC   r*   rF   rG   rH   rI   rL   rM   r   r   r   r   r"   6   s     

			r"   N)r   
__future__r    r   r   r   r   r   r	   r   r   r"   r   r   r   r   <module>   s   	