如何使用php将pdf嵌入到网页中,以便可以在pdf上书写、保存和滚动。我希望它能够在 Windows、iOS、Android 等平台上运行。最好是免费的。
使用 HTML
<iframe>
或 <embed>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Embed PDF</title>
</head>
<body>
<h1>View and Edit PDF</h1>
<iframe src="yourfile.pdf" width="100%" height="600px">
This browser does not support PDFs. Please download the PDF to view it: <a href="yourfile.pdf">Download PDF</a>.
</iframe>
</body>
</html>