I'm tryin' to get a .jpg image inside a PSTricks image. The reason why I want to do it is, that I want to describe it with textboxes and arrows and stuff like that.
Maybe someone can help me

Greetings
NEW: TikZ book now 40% off at Amazon.com for a short time.
as usual with package {auto-pst-pdf} and runningjustincase wrote: I'm tryin' to get a .jpg image inside a PSTricks image. The reason why I want to do it is, that I want to describe it with textboxes and arrows and stuff like that.
Maybe someone can help me![]()
Code: Select all
\begin{figure}[htb]
% New style inside the PS-Figure to set a opacity of 0 for the frameboxes
\newpsstyle{fill}{opacity=0,fillstyle=solid,fillcolor=black!30,framearc=0.3}
\centering
\begin{pdfpic}
\begin{pspicture}(0,0)(5,5)
[...]
\end{pspicture}
\end{pdfpic}
\end{figure}
Code: Select all
\usepackage{ifpdf}
\ifpdf%
\usepackage{pdftricks}
\begin{psinputs}
\usepackage{pstricks}
\end{psinputs}
\else
\usepackage{pstricks}
\newenvironment{pdfpic}{}{}
\fi
that is not possible. Convert the image to eps.justincase wrote: Edit: Okay if anyone read this topic - I found the failure in using the pst-circ packageAnyway, if someone know how to get the .jpg inside this environment to work I'd be happy
NEW: TikZ book now 40% off at Amazon.com for a short time.