Sign a PDF — draw, type, or upload
Add your signature to a PDF in three ways: draw, type, or upload an image. Place it anywhere, then download.
Files are processed entirely in your browser. Nothing is uploaded to any server.
How it works
- 1
Upload PDF
Drop the PDF you want to sign.
- 2
Create signature
Draw on the canvas, type your name in a script font, or upload a signature image.
- 3
Place & download
Drag the signature into place, resize, and download the signed PDF.
Frequently asked questions
Is this legally binding?
Is this a digital signature (cryptographic)?
Is the file uploaded?
Multi-page placement?
Reuse my signature?
Related tools
Fill PDF
Type into PDF form fields and download a filled copy.
Create fillable PDF
Add form fields to any PDF.
Protect PDF
Add a password and restrict permissions.
Embed this tool
Let your visitors use Sign PDF without leaving your site. Paste the snippet below into any HTML page. Files stay private — everything runs in the visitor's browser.
<iframe
src="https://pdfwox.com/embed/sign-pdf"
width="100%"
height="600"
style="border:none;border-radius:8px"
title="sign-pdf tool"
allow="downloads"
loading="lazy"
></iframe>
<script>
window.addEventListener('message',function(e){
if(e.data&&e.data.type==='privpdf-resize'){
var f=document.querySelector('iframe[src="https://pdfwox.com/embed/sign-pdf"]');
if(f)f.style.height=e.data.height+'px';
}
});
</script>The embed runs entirely in the visitor's browser — no files are uploaded. The iframe resizes automatically to fit its content via postMessage.
Deeper guide