Requirements • Installation • Usage • Contributing • License
Tested on Topaz Gigapixel AI v7.2.3
Install the latest version with PyPI
pip install -U gigapixel
from gigapixel import Gigapixel
gp = Gigapixel(r"C:\Program Files\Topaz Labs LLC\Topaz Gigapixel AI\Topaz Gigapixel AI.exe")
gp.process(r"path\to\image.jpg")
Additional parameters can be passed to process()
method:
from gigapixel import Scale, Mode
gp.process(
r"path\to\image.jpg",
scale=Scale.X2,
mode=Mode.STANDARD,
)
Warning! Using parameters (
scale
,mode
) may take additional time to process single image. Consider using them only when needed. To get the best performance, usegp.process(r"path\to\image.jpg")
Bug reports and/or pull requests are welcome
The module is available as open source under the terms of the Apache License, Version 2.0