MBS DynaPdf PDF/A: PDF Circle?

I want to make a small black circle 50x50 Pixel in MBS DynaPDF Starter.

I think the CircleAnnot - Function is, what I need.

I tried it this way:
call pdf.CircleAnnot(1,50,50,50,50,50,0,0,0)

But xojo said: got 9 arguments, need 11?

CircleAnnot(PosX as double, PosY as double, Width as double, Height as double, LineWidth as double, FillColor as UInt32, StrokeColor as UInt32, ColorSpace as Integer, Author as string, Subject as string, Comment as string) as integer

I don’t see you provide all parameters, especially the string so the end.

If you just want the circle,

[code]call pdf.Ellipse(x,myOffsety+y,Width,Height, pdf.kfmStroke)

[/code]

But look into DynaPDFGraphics which makes the difference between Graphics commands and PDF drawing more or less ‘go away’

That should have read

call pdf.Ellipse(x,y, Width,Height,  pdf.kfmStroke)   //the last parameter determines the fill style