I have this example to write text along path using decorations.text library, and I want to insert arabic text starting from right to left
\documentclass[border=5mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{decorations.text}
\usepackage{fontspec}
\usepackage[rldocument]{bidi}
\setmainfont[Script=Arabic]{Amiri}
\tikzset{decoration={text along path,
text={Very very long text I need to show it from right to left}}}
\begin{document}
\begin{tikzpicture}
\path [decorate] (0,0)..controls +(45:4cm) and +(225:4cm)..(8,0);
\end{tikzpicture}
\end{document}
My hope is to show the text along path from right to left in like manner
left to right from it show to need I text long very Very


/pgf/decoration/text effects/reverse texton page 602. It might help. – Denis Jan 17 '18 at 13:24