This repository was archived by the owner on Sep 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconvert_pdf.php
102 lines (92 loc) · 3.78 KB
/
convert_pdf.php
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?php
$article_title = "Palitan o i-save upang gawing PDF file";
include('layouts/pages_header.php');
include('templates/header.php');
?>
<div class="navbar" id="navbar">
<div><a class="nav active" draggable="false">Magformat ng teksto</a></div>
<div><a class="nav" href="index.php" title="Home" draggable="false">Home</a></div>
<div><a class="nav" href="get_started.php" title="Mga Pagsasanay" draggable="false">Mga Pagsasanay</a></div>
</div>
<div class="body">
<div class="nav_add">
<a href="get_started.php" title="Mga pagsasanay" draggable="false">Mga Pagsasanay</a>
<span>→</span>
<a href="save_print.php" title="Mag-save at mag-print" draggable="false">Mag-save at mag-print</a>
<span>→</span>
<a href="save_document.php" title="Artikulo: Palitan o i-save upang gawing PDF file" draggable="false">Palitan o i-save upang gawing PDF file</a>
</div>
<div class="col">
<div class="parent_nav">
<a href="save_document.php" title="Artikulo: Mag-save ng dokumento" draggable="false">
<div>Mag-save ng dokumento<br><img src="<?= $IMG_DIR ?>icon.png" height="16px" style="margin-right: 10px">
<text class="article">Artikulo</text>
</div>
</a>
<a href="convert_pdf.php" title="Artikulo: Palitan o i-save upang gawing PDF file" draggable="false">
<div class="active_tab">Palitan o i-save upang gawing PDF file<br>
<img src="<?= $IMG_DIR ?>icon.png" height="16px" style="margin-right: 10px">
<text class="article">Artikulo</text>
</div>
</a>
<a href="edit_pdf.php" title="Artikulo: I-edit ang PDF file" draggable="false">
<div>I-edit ang PDF file<br>
<img src="<?= $IMG_DIR ?>icon.png" height="16px" style="margin-right: 10px">
<text class="article">Artikulo</text>
</div>
</a>
<a href="print_document.php" title="I-Print ang iyong dokumento" draggable="false">
<div>I-print ang iyong dokumento<br>
<img src="<?= $IMG_DIR ?>icon.png" height="16px" style="margin-right: 10px">
<text class="article">Artikulo</text>
</div>
</a>
<a href="print_envelope.php" title="Mag-print ng envelope" draggable="false">
<div>Mag-print ng envelope<br>
<img src="<?= $IMG_DIR ?>icon.png" height="16px" style="margin-right: 10px">
<text class="article">Artikulo</text>
</div>
</a>
<a href="print_address.php" title="Mag-print ng Return Address Labels" draggable="false">
<div>Mag-print ng Return Address Labels<br>
<img src="<?= $IMG_DIR ?>icon.png" height="16px" style="margin-right: 10px">
<text class="article">Artikulo</text>
</div>
</a>
<a href="print_mailing.php" title="Mag-print ng Mailing Labels" draggable="false">
<div>Mag-print ng Mailing Labels<br>
<img src="<?= $IMG_DIR ?>icon.png" height="16px" style="margin-right: 10px">
<text class="article">Artikulo</text>
</div>
</a>
<div class="next_topic">Susunod na paksa:<br>
<a href="share_document.php" draggable="false">Magbahagi at co-author →</a>
</div>
</div>
<div class="page_content">
<div class="body_head">
<div class="page_title">Palitan o i-save upang gawing PDF (Portable Document Format) file</div>
</div>
<div class="col_info">
<div class="cont">
<ol type="1">
<li>Pumunta sa <b>File > Save as</b>.</li>
<li>Piliin kung saan mo gusto i-save, halimbawa sa <i>OneDrive</i></li>
<li>Dito sa <b>Save as type</b> box, piliin ang <b>PDF (*pdf)</b>.</li>
<li>Piliin ang <b>Save</b>.</li>
</ol>
</div>
</div>
<hr>
<div class="next_article">
<text>Susunod na artikulo:<br><a href="edit_pdf.php" title="Palitan o i-save upang gawing PDF file" draggable="false">I-edit ang PDF file →</a></text>
</div>
<hr>
</div>
</div>
<br>
</div>
<?php
include('templates/footer.php');
include('layouts/footer.php');
?>