操作图像 mathematica

Manipulate an image mathematica

我在 Mathematica 中使图像从左向右移动时遇到问题。

我有一点操作,

(*Rook Movement*)
Manipulate[
  Graphics[Translate[Point[{0, 0}], {t, t2}], Axes -> True, 
  PlotRange -> {{0, 8}, {0, 8}}], {t, 0, 8}, {t2, 0, 8}]

我还有一个定义为 "rook" 的图像。

如何用我的车图像替换点?

谢谢!

img = ExampleData[{"TestImage", "F16"}];
Manipulate[
 Graphics[Inset[img, {t, t2}], Axes -> True, 
  PlotRange -> {{0, 8}, {0, 8}}], {t, 0, 8}, {t2, 0, 8}]