It works, but... the LCD inverted.
I thought the instructions has miss on : DB0->DB7 to pin D37->D30
and I change into DB0->DB7 to pin D30->D37, but White LCD I get.
If you get a display, then this problem has nothing to do with the physical connections.
In the library is a "switch" function that controls the orientation of the display (in each direction, horizontal and vertical).
Sorry, but I actually have no familiarity with this library, so you have to read the instructions that come with it, and find that switch to set appropriately. I confess, it does not seem to be in the manual.
I'll give you a hint - it is probably toward the top of your code example.
Nearly every TFT control chip has 2 control bits to cause mirror-reversal of the image,
one for vertical and one for horizontal - these are typically set up in the initialization
for that chip, but if you need to change them you'll either find that the library has a
function to do this, or you'll have to go to the datasheet for actual TFT COG chip and
lookup which bit in which register needs changing.
The bits are typically called gate-scan and source-scan bits - changing one will mirror in
one axis, changing the other mirrors in the other axis, changing both at the same time
gives a 180 degree rotation.