I have a 1-page PDF containing text. I want to convert this into a PDF with all but one line blurred. (This is kind of cheapo redaction -- I want the user to see that they're looking at an invoice sent to my firm, but not see other customers' information.)
I've gotten this far:
Code: Select all
convert.exe "c:\temp\foo.pdf" -region (792x71+0+0 -blur 0x2) -region (792x715+0+76 -blur 0x2) "c:\temp\bar.pdf"
Can someone help me get this incantation right?