There is no need to use a bitmap image for the symbol. It is the Unicode character ☆:
U+2606 WHITE STAR
LuaTeX
Even with bold fonts, the symbol does not have the thickness of the lines usually. This can be manipulated by package pdfrender that works for pdfTeX/LuaTeX in PDF mode. Example:
\documentclass{article}
\usepackage{fontspec}
\usepackage{pdfrender}
\newcommand*{\mysymbfont}{%
\fontspec{\myfont}%
\fontsize{5em}{5em}\selectfont
}
\newcommand*{\textbigwhitestar}{^^^^2606}
\begin{document}
\tabcolsep=.2\tabcolsep
\begin{tabular}{llll}
\xdef\myfont{DejaVuSans-Bold.ttf}%
\texttt{\myfont}:
&
\mysymbfont
\textbigwhitestar
& \mysymbfont
\textpdfrender{
TextRenderingMode=Stroke,
LineJoinStyle=Round,
LineWidth=.5pt,
}{\textbigwhitestar}
& \mysymbfont
\textpdfrender{
TextRenderingMode=FillStroke,
LineJoinStyle=Round,
LineWidth=2pt,
}{\textbigwhitestar}
\\
\xdef\myfont{xits-math.otf}%
\texttt{\myfont}:
& \mysymbfont
\textbigwhitestar
& \mysymbfont
\textpdfrender{
TextRenderingMode=Stroke,
LineJoinStyle=Round,
LineWidth=.5pt,
}{\textbigwhitestar}
& \mysymbfont
\textpdfrender{
TextRenderingMode=FillStroke,
LineJoinStyle=Round,
LineWidth=1pt,
}{\textbigwhitestar}
\end{tabular}
\end{document}

XeTeX
In XeTeX the symbol can be included as PDF file, generated via LuaTeX, e.g.:
% whitestar-raw.tex for LuaLaTeX
\documentclass{article}
\usepackage{fontspec}
\usepackage{pdfrender}
\pagestyle{empty}
\begin{document}
\fontspec{DejaVuSans-Bold.ttf}
\fontsize{5em}{5em}\selectfont
\textpdfrender{
TextRenderingMode=FillStroke,
LineJoinStyle=Round,
LineWidth=2pt,
}{^^^^2606}
\end{document}
Then compile it and crop the margins:
lualatex whitestar-raw
pdfcrop whitestar-raw.pdf whitestar.pdf

In XeTeX the PDF file is included via:
\includegraphics{whitestar}
convertfrom ImageMagick, that might help ;) – yo' Sep 22 '13 at 21:58pdflatextoo, although it seems that the last version brings some improvements, so it is possible that in some time,xelatexwill get better, too. But then it is more a "feature request" than a question suitable for an SE site. Currently, the only answer is really to get rid of transparency, or get rid of Acrobat. – yo' Sep 22 '13 at 22:37