Thank you.
The problem was all at View initialization.
In your example it would be missing to move the center of the view to the upper right corner, but in fact its solution elucidated the problem.
To homologate the solution, i did this snippet to fit any background size:
View camera;
camera.setSize(Vector2f(background.getSize().x, background.getSize().y));
camera.setCenter(Vector2f(window.getSize()));