No, that's not something Asciidoctor PDF can do. I answered this question here:
https://github.com/asciidoctor/asciidoctor-pdf/issues/946As I explained in that issue, you can rasterize the document (which is what that's called) using Ghostscript:
$ gs -dBATCH -dNOPAUSE -sDEVICE=pdfwrite -dNoOutputFonts -r300 -o output.pdf input.pdf
You also have the option of using ImageMagick directly, though it produces a much larger output file:
$ convert -density 300 input.pdf output.pdf
I have added this information to the documentation:
https://github.com/asciidoctor/asciidoctor-pdf#rasterizing-the-pdf I may add this as an option for the optimizer in the future.
Best Regards,
-Dan