Hello I have bought 4 8*8 LED Matrix.
And I saw this circuit and I have built it (eventually have all the components).
Do anybody here know how to program the LED Matrix?
Is there any available library for LED Matrix and those shift registers?
Thank you.

Hi,
For clarification -- do you want help to program the 8*32 matrix that you built exactly like the schematic you attached (including the At90s2313), or do you want to build an 8*32 matrix similar to the schematic but controlled by an Arduino?
For the former, it looks like you'd use the SPI bus to communicate between the Arduino's ATMega and your circuit's At90s2313, but you'd have to look at the At90s2313's programming to see how you communicate with it.
For the latter, the easiest way I know to do what you want is to replace the 74hc259 with another 74hc595 (outputs driving the ULN2003, inputs on the same bus as the rest of the 74hc595s) and use the ShiftMatrixPWM library.
Good luck!