Jest to tłumaczenie automatyczne. Pierwotne stanowisko jest dostępne w angielski.

PDFDrawEllipse

Ta funkcja umożliwia narysowanie elipsy w dokumencie PDF w określonych wymiarach i kolorze.

function PDFDrawEllipse(color,  color = color or PAGE('PDF_NEW', 'PdfRgbColor', 255, 0, 0)
thickness, thickness = thickness or 1;
int x,
int y,
int width,
int height);

Example:
Draw a circle with a red outline, thickness 2, positioned at (150, 400), diameter 30.
PDFDrawEllipse(PAGE('PDF_NEW', 'PdfRgbColor', 255, 0, 0), 2, 150, 400, 30, 30);