I read post about convert bitmap to equation,but bitmap is not so accurate as vector graph, then I want to find a method for convert vector graph to equation.
This is the examle pdf file.I already import this file into mathematica as below:
If I know the equation of this plot, I can Contourplot[equation] this object.
How to find the equation of this object?

InputFormto the imported graphic and you will find, e.g.,FilledCurveprimitives for the letter "a". You can extract them from theGraphicsobject (let's call itg) withCases[g,_ JoinedCurve,All].FilledCurveis quite similar toJoinedCurveand I know that you already got in contact withJoinedCurve... So you can manipulate alsoFilledCurves... – Henrik Schumacher Mar 08 '18 at 10:01FilledCurve. – Henrik Schumacher Mar 08 '18 at 10:05everything is data.You give equationx^2+y^2==1then I could plot a same circle.Then I want to find what data make this plot. – kittygirl Mar 08 '18 at 10:27ContourPlotwould usually be only a very poor approximation to the geometric objects, in particular, if the objects are already described exactly, e.g. by lines, Bezier curves and splines. – Henrik Schumacher Mar 08 '18 at 10:34