Can a tikzpicture be distorted to look like it's a picture from a book in an easy way (not exporting to pdf, printing, taking picture and using said picture)?
something like:
\tikz[distorted=jpg] \draw (0,0) --(1,1);
Edit:
So
\documentclass{memoir}
\usepackage{tikz}
\begin{document}
\tikz \draw (0,0) -- (1,1);
\end{document}
creates a very beautifull line, that looks like it's in vector graphics format (which is hard to see on a screenshot):
What i then want is an easy way to distort the tikzdrawing so it looks like a picture taking with a real bad camera more so than vector graphics? Why would one want to uglyfi ones buatiful tikz figures? For fun! (the distorded=jpg in the original post was a pseudo way of telling tikz to make the drawing look as ugly as a jpg picture, full of loss).

random stepspath decoration, section 24 of the pgf manual, so something likedecorate, decoration={random steps,segment length=3pt,amplitude=1pt}; Don't forget to load the appropriate librarydecorations.pathmorphing. For a real jpg distortion, you would have to cut the pictures into cells and distort those separately; Try looking at the solution here: https://tex.stackexchange.com/questions/319172/gimp-like-perspective-transform-in-tikz?noredirect=1&lq=1 – Huang_d Jun 09 '17 at 09:47tikzpicture: https://tex.stackexchange.com/questions/122970/simulate-printing-imperfections-and-defects-with-tex – Steven B. Segletes Jun 09 '17 at 09:53