cx_Freeze creates standalone executables from Python scripts, with the same performance, is cross-platform and should work on any platform that Python itself works on.
my question is why the icon display white background? After I finishend the build job on my windows PC, One ico displays normal with schedule_job.py,But the other one dispaly white background,when I run the application the icon is still white background,so I replace the icon with the normal icon,but it still not work well .
I set up two icos file in setup.py file, Detail as below code fragment
executables = [Executable("schedule_job.py",icon="pdf.ico", base=base, target_name="to-pdf"), Executable("start.py",icon="app.ico", base=base, target_name="e-signature") ]
setup( name="e-signature", version="0.2", description="e-signautre v0.2", options={ "build_exe": build_exe_options, }, executables=executables, )
my question is why the icon display white background? After I finishend the build job on my windows PC, One ico displays normal with schedule_job.py,But the other one dispaly white background,when I run the application the icon is still white background,so I replace the icon with the normal icon,but it still not work well .