Created
August 1, 2015 16:04
-
-
Save alanyoshida/8e84d37f8dc744004e71 to your computer and use it in GitHub Desktop.
FORM JCROP PARA ENVIAR PARA PHP PRA FAZER O CROP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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