Skip to content

Instantly share code, notes, and snippets.

@alanyoshida
Created August 1, 2015 16:04
Show Gist options
  • Save alanyoshida/8e84d37f8dc744004e71 to your computer and use it in GitHub Desktop.
Save alanyoshida/8e84d37f8dc744004e71 to your computer and use it in GitHub Desktop.
FORM JCROP PARA ENVIAR PARA PHP PRA FAZER O CROP
<form action="http://projetounimed.local/image.php" method="post" onsubmit="return checkCoords();">
<input type="hidden" name="id" value="{{entity.id}}" />
<input type="hidden" name="blob" value="{{ path('getmidiablob', { 'id': entity.id} ) }}" />
<input type="hidden" name="mime" value="{{ entity.mimetype }}" />
<input type="hidden" id="x" name="x" />
<input type="hidden" id="y" name="y" />
<input type="hidden" id="w" name="w" />
<input type="hidden" id="h" name="h" />
<input type="submit" value="Crop Image" />
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment