I want to change the transparency of the JTable to see what behind cells like a photo is it possible?
You can set background color to have some alpha component:
Color backgound = new Color(0, 0, 0, 255) //total transparency
For more help on what you are trying to accomplish, post a SSCCE.