Has like, the most recommended plugin I know is Cropper, see the examples on the official website here.
The installation is practical, see a small tutorial below, second official documentation.
HTML
<div class="container">
<img src="picture.jpg">
</div>
<div id="previewImg">
<img src="picture.jpg">
</div>
Javascript
$('.container > img').cropper({
aspectRatio: 16 / 9,
crop: function(data) {
// Saída do resultado da imagem 'cropado'.
// Como enviar a imagem cortado para seu servidor.
},
preview: "$('#previewImg')", // Pré-visualização Imagem
});
The complete documentation is here
I hope it helped you. =)