My printing house asked me to set black overprint feature on for my book which includes a lot of background images. I have no idea what is overprinting and after spending a long time of googling I found this page explains what is overprinting and how to tun it on in Adobe InDesign. Then I found this command in ConTeXt
\setupcolors[rgb=no,cmyk=yes,spot=yes,state=start,overprint=yes]
I don't find the equivalent in Latex. However, I found overprint package but it doesn't work with XeTeX. Here is an example of what my book look like:
\documentclass[10pt,oneside]{book}
%\usepackage[a5paper, margin=1cm]{geometry}
\usepackage{geometry}
\geometry{
a5paper,
total={148mm,210mm},
left=20mm,
right=20mm,
top=20mm,
bottom=20mm,
bindingoffset=0mm,
driver=xetex
}
\usepackage{fontspec}
\usepackage{graphicx}
\usepackage{wrapfig}
\usepackage{fancyhdr}
\usepackage{xcolor}
\usepackage[pages=some,angle=0,opacity=1]{background}
\usepackage{tikzpagenodes}
\usepackage{polyglossia}
\setdefaultlanguage[calendar=gregorian,hijricorrection=1]{arabic}
\parindent 0pt
\newfontfamily\arabicfont[Script=Arabic,Scale=1.2]{Amiri}
\newfontfamily\chapterfont[Script=Arabic,Scale=1.2]{Tarablus}
\begin{document}
\thispagestyle{plain}
\BgThispage
\backgroundsetup{ contents={\includegraphics[width=0.09\paperwidth,height=0.09\paperheight,keepaspectratio]{7}}, position=current page.center}
\vspace*{3cm}
\begin{flushright}
\Large{أهدي هذا الكتاب إلى أفضل أصدقائي ورفيقة دربي زوجتي}
\end{flushright}
\end{document}
The result when I use Overprint Preview in Acrobat Prof looks like this:
I am looking for help in this issue.