mirror of
https://github.com/a2nt/cropper-image-mask.git
synced 2024-10-22 17:05:48 +02:00
7 lines
136 B
PHP
7 lines
136 B
PHP
<?php
|
|
|
|
if (isset($_POST['Image'])) {
|
|
file_put_contents(dirname(__FILENAME__).'/image.png', $_POST['Image']);
|
|
die('SUCCESS!');
|
|
}
|