I'm using the following snippet to add a footer to a PDF document. It works fine, but although I have the UNCODE working in the PDF document, it does not work in the footer. Otherwise what I ADDED to the document.
gs -q -dNOPAUSE \
-sDEVICE=pdfwrite \
-sOUTPUTFILE=output.pdf \
-c '<< /EndPage \
{ exch pop 0 eq dup \
{ /CharterRegular 10 selectfont \
/ms {moveto show} bind def \
(J'aime le café) 40 40 ms \
} if \
} bind \
>> setpagedevice' \
-dBATCH input.pdf \
Any idea?
Thanks in advance

