In a 3D graphic, if I wrap a figure, for example,
imagewrapped =
With[{Lx = 10, Ly = 10, Nx = 5, Ny = 5, r0 = 2, ftsz = 12},
Graphics3D[{Table[{Sphere[{ix Lx, iy Ly, 0}, r0]}, {ix, 1, Nx}, {iy,
1, Ny}], Red,
Table[Text[Style[ix, ftsz, Bold], {ix Lx, 0, 0}], {ix, 1, Nx}],
Cyan, Table[
Text[Style[iy, ftsz, Bold], {0, iy Ly, 0}], {iy, 1, Ny}]},
Boxed -> False, Lighting -> Automatic, ViewPoint -> {1, 1, 1},
ImageSize -> {Automatic, 100}, Method -> {"ShrinkWrap" -> True}]]

some text disappear. How can I wrap the figure without loosing information?

