When displaying images with GraphicsRow, GraphicsColumn, and GraphicsGrid, a thin white border is added to the image. This makes it difficult to pad the image.
Is there a way to remove the border? Setting ImageMargins or ImagePadding to 0 does not work.
Code to reproduce the issue:
GraphicsRow[Table[Graphics@Disk[], 3], Background -> Blue] //
ImagePad[#, 50, Blue] &



GraphicsRow[Table[Graphics@Disk[], 3], Background -> Blue] // ImageCrop // ImagePad[#, 50, Blue] &. – J.W Kang Jan 18 '21 at 14:30GraphicsRow[Table[Graphics@Disk[], 3], Background -> Blue, PlotRangePadding -> None] // ImagePad[#, 50, Blue] &– Bob Hanlon Jan 18 '21 at 15:01