When a LaTeX document contains TikZ figures with color gradients, it seems that Acrobat Pro's preflight function can no longer convert the PDF to comply with the PDF/A-1b standard.
For instance, the code
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\tikz \draw [left color=green, right color=blue] (0, 0) rectangle (1, 1);
\end{document}
produces a rectangle with green-to-blue color gradient,

which results in two PDF/A compliance errors ("Syntax problem: real value out of range"), namely "Largest positive real number used: 32768.0" and "Largest negative real number used: -32768.0". The screenshot below indicates that this might be related to a bounding box problem.
At http://www.callassoftware.com/callas/doku.php/en:products:pdftoolbox:all_features:properties is says with respect to "Largest positive real number used" that "In many environments the valid range is limited to the values as defined by IEEE for single-precision floating-point numbers. This limits the range to: +/- 32,767."
Is there a way to fix this problem and to obtain a PDF/A file?
EDIT: When I add a non-unity opacity value to the TikZ \draw options, such as "opacity=0.9999", one of the errors ("Largest positive real number used: 32768.0") disappears.

opacitysounds like it uses transparency features... – Martin Schröder May 20 '14 at 13:20