nvkhoa0108

Results 1 comments of nvkhoa0108

Hi Vglin, Here is my code: ``` from html2image import Html2Image hti = Html2Image(output_path = r'E:/wdir/python/vnpt_qni/src/tmp/', browser="chrome", custom_flags=["--no-sandbox",], temp_path=r'E:\wdir\python\vnpt_qni\src\tmp') print(hti.browser) print(hti.size) hti.screenshot(url='https://www.geeksforgeeks.org/how-to-render-html-to-an-image/', save_as= 'test.png') ``` Currently , I'm using Html2image...