UchihaArk

Results 3 issues of UchihaArk

![image](https://github.com/ArtifexSoftware/pdf2docx/assets/37822176/9bbb1b57-5ac0-429c-b816-9246775c0297)

当pdf中包含流程图时候,会有如下情况 1. 会将流程图的框架转为图片,而文字在图片后面 2. 流程图整体转为一张图片,但在图片后面会有和图片相同的文字重叠在一起 如图: ![image](https://github.com/ArtifexSoftware/pdf2docx/assets/37822176/8a85abf0-7f8b-4409-a073-1693c2988901) 右侧是原本的转换效果,左侧是拖动出的图 ![image](https://github.com/ArtifexSoftware/pdf2docx/assets/37822176/1187e004-ca93-4020-bffb-0ac08b67ff27) 原本是重叠在一起的,拖动以展示效果 尝试调整过以下参数: ``` zh.convert(docx_file, start=0, end=None, pages=None, float_image_ignorable_gap=10, connected_border_tolerance=2, min_svg_gap_dx=30, min_svg_gap_dy=10, parse_stream_table=True) ```

question

Rod Version: v0.115.0 ## The code to demonstrate my question ```bash browser := rod.New(). ControlURL(launcher.New(). Headless(true). NoSandbox(true). MustLaunch()). MustConnect(). MustIncognito(). MustIgnoreCertErrors(true) defer browser.MustClose() page := stealth.MustPage(browser) page.MustNavigate("https://baijiahao.baidu.com/s?id=1796948662162767360&wfr=spider&for=pc") page.HTML() ``` ##...

question