mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
31 lines
849 B
Python
31 lines
849 B
Python
"""Flatten forms/annotations into page content via PyMuPDF bake.
|
|||
|
|
Args: {"path": in, "out": out}. Prints {"ok": true}."""
|
||
|
|
import json
|
||
|
|
import sys
|
||
|
|
|
||
|
|
|
||
|
|
def main():
|
||
|
|
args = json.loads(sys.argv[1]) if len(sys.argv) > 1 else {}
|
||
|
|
path, out = args.get("path"), args.get("out")
|
||
|
|
if not path or not out:
|
||
|
|
print(json.dumps({"error": "missing path/out"}))
|
||
|
|
sys.exit(1)
|
||
|
|
try:
|
||
|
|
import fitz
|
||
|
|
except ImportError:
|
||
|
|
print(json.dumps({"error": "PyMuPDF not installed"}))
|
||
|
|
sys.exit(1)
|
||
|
|
try:
|
||
|
|
doc = fitz.open(path)
|
||
|
|
doc.bake() # widgets + annotations become page content
|
||
|
|
doc.save(out)
|
||
|
|
doc.close()
|
||
|
|
print(json.dumps({"ok": True}))
|
||
|
|
except Exception as exc: # noqa: BLE001
|
||
|
|
print(json.dumps({"error": str(exc)}))
|
||
|
|
sys.exit(1)
|
||
|
|
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
main()
|