I made a Tikz image that i would like to use as a icon of sorts in my document but as i have tried to displace it to the upper left corner of the document I inicially find that aparently the bounding box of the image is to big for it to move to the left, and then after some experiments with clipping the tikzimage I find that whenever I try to displace the image to begin to the left of where text usually begins, the image becomes cropped at the beginning and is only draw after the line that marks where text usually begins in the page.
That is somewhat strange for in the beginning my image was too much to the left and actually got draw to the rightmost point in the page, so if it where some type of limiting box in the page wouldn't it also crop the image at the right side too ?
is there a way to overcome tis problem ?
As pointed, I should give more specific information, so there it is the code i am using:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{hobby}
\begin{document}
\begin{tikzpicture}[y=28pt, x=28pt,scale =0.5,yscale=-1.1, xscale=1.2]
\draw[help lines,step=8pt] (-6,-1) grid (18,11);
\clip (-6,-1) rectangle (30,12);
\path[fill=black ,xshift = -12cm, rotate=-12] (1.93,2.85) to [curve
through ={(4.09,2.77)..
(3.16,0.15)..(0.45,1.68)..(2.37,6.57)..(8.41,7.82)..(12.30,8.08)}]
(13.36,8.6) .. controls (14.45,8) and (15.50,7.8) .. (19.08,7.96) to
[curve through ={(23.36,8.97)..(25.39,10.67)}] (25.22,12.77)
.. controls (24.22,9.9) and (21.65,10.45)..(21.09,12.27) to [curve
through ={(23.46,15.72)..(27.28,12.86)..(25.40,8.13)..(21.72,6.40)..
(16.44,5.93)..(15.3,5.79)}] (14.49,5.31) .. controls (14.18,5.5) and
(14,5.67)..(13.3,5.82) to [curve through ={(12.4,5.92)..(8.55,5.89)..
(5.9,5.75)..(2.01,4.06)}] (1.93,2.85) ;
\end{tikzpicture}
\end{document}
And here is a image of what i mean:




\documentclass{article} \usepackage{tikz} \begin{document} \begin{tikzpicture}[remember picture,overlay] \node [below left] at (current page.north west) [draw, fill=cyan, text width=24mm, align=center, font=\tiny] { This is an absolutely positioned text in the upper left corner. }; \end{tikzpicture} \end{document}? for details see TikZ & PGF manual, page 254 (v3.1.1) – Zarko Feb 08 '19 at 17:28\noindent. – Feb 08 '19 at 17:40overlay. – Feb 08 '19 at 17:47