I have a simple button, but I can not get it to center.
{ xtype: 'button', width: 150, height: 150, cls: 'startbutton' }
CSS
.startbutton { background-image: url(Camera.png) !important; }
This image is 72x72 pixels in size.
I think you need background-position :
.startbutton { background-position: center center; background-image: url(Camera.png) !important; }
Is there a reason you are not using standard things:
icon: '', iconAlign: 'center'