-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathocg-content.py
83 lines (45 loc) · 1.45 KB
/
ocg-content.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import pymupdf
print("Add OCG Content")
filename = input("Filename: ")
doc = pymupdf.open(filename)
def new_ocg():
ocgname = input("OCG Name: ")
activate = input("Activate? (y/n): ")
ocgon = True if activate in ("y","Y") else False
ocg_xref = doc.add_ocg(ocgname,on=ocgon)
print("OCG Added xref:",ocg_xref)
more = input("Add more? (y/n): ")
if(more in ("y","Y")):
new_ocg()
nwocg = input("Add New OCG xref? (y/n): ").lower()
if nwocg == "y":
new_ocg()
def insert_ocg():
ocg_xref = int(input("OCG xref: "))
pg = int(input("Page: "))
print("\n","1. insert_text","\n",
"2. insert_textbox","\n",
"3. insert_htmlbox","\n")
#"4. insert_textbox","\n",)
ctype = input("Type of content? ")
if(ctype == "1"):
pos = input("Point x,y: ")
pt = pymupdf.Point(pos.split(','))
txt = input("Text to insert: ")
page = doc[pg]
page.insert_text(pt,txt,color=(0,0,0),oc=ocg_xref)
else:
print("Not supported")
#ocgname = input("OCG Name: ")
#activate = input("Activate? (y/n): ")
#ocgon = True if activate in ("y","Y") else False
#ocg_xref = doc.add_ocg(ocgname,on=ocgon)
#print("OCG Added xref:",ocg_xref)
more = input("Add more? (y/n): ")
if(more in ("y","Y")):
insert_ocg()
insert_ocg()
newfile = input("New filename: ")
doc.save(newfile)
doc.close()
print("Task completed")