D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
www
/
public
/
wPaint-master
/
test
/
Filename :
upload.php
back
Copy
<?php $image = imagecreatefrompng($_POST['image']); $id = uniqid(); imagealphablending($image, false); imagesavealpha($image, true); imagepng($image, 'uploads/wPaint-' . $id . '.png'); // return image path echo '{"img": "/test/uploads/wPaint-' . $id . '.png"}';