如何将 pdf 嵌入到 Windows、iOS、Android 等网页中

问题描述 投票:0回答:1

如何使用php将pdf嵌入到网页中,以便可以在pdf上书写、保存和滚动。我希望它能够在 Windows、iOS、Android 等平台上运行。最好是免费的。

php html pdf
1个回答
0
投票

使用 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>
© www.soinside.com 2019 - 2024. All rights reserved.