Note:
Rather than creating a new question that has almost the same code base, I rewrote my previous question. Because this issue is not specific to PSTricks, I changed the code so everybody can play with it.
I want to avoid using pdfcrop so I set the paper size to tightly suit my need in advance as follows.
% sample.tex
\documentclass{minimal}
\usepackage
[
paperwidth=144bp,%2in = 2x72bp = 144bp
paperheight=108bp,%1.5in = 1.5x72bp = 108bp
margin=0bp
]
{geometry}
\usepackage{xcolor,calc}
\fboxsep=0bp
\fboxrule=2bp
\begin{document}
\noindent\fbox{\color{yellow}\rule{\paperwidth-2\fboxrule}{\paperheight-2\fboxrule}}%
\end{document}
or without using geometry.sty:
% sample.tex
\documentclass{minimal}
\paperwidth=144bp%2in = 2x72bp = 144bp
\paperheight=108bp%1.5in = 1.5x72bp = 108bp
\voffset=-72bp
\hoffset=-72bp
\special{papersize=144bp,108bp}
\usepackage{xcolor,calc}
\fboxsep=0bp
\fboxrule=2bp
\begin{document}
\noindent\fbox{\color{yellow}\rule{\paperwidth-2\fboxrule}{\paperheight-2\fboxrule}}%
\end{document}
Then I compiled it with latex->dvips->ps2pdf and I got a strange result as follows:

I also got EPS with strange bounding box as follows:
%!PS-Adobe-3.0 EPSF-3.0
% Produced by xpdf/pdftops 3.02pl4
%%Creator: TeX
%%LanguageLevel: 2
%%DocumentSuppliedResources: (atend)
%%BoundingBox: 0 0 105 145
%%HiResBoundingBox: 0 0 104.994 144.018
%%EndComments
%%BeginProlog
%%BeginResource: procset xpdf 3.02pl4 0
%%Copyright: Copyright 1996-2007 Glyph & Cog, LLC
Summary
I tested this using pdflatex with no problem. Herbert tested it using xelatex with no problem too. According to Herbert, there is a problem in dvips.
pdflatex(maybe in combination with thepreviewpackage orstandaloneclass) – Martin Scharrer♦ Jul 10 '11 at 9:45xelatexand everything will be fine. – Herbert Jul 10 '11 at 16:19