我正在将链接粘贴到input
然后使用PHP(imagecrop)裁剪图像并将其存储到服务器目录中。
$imagesrc = $_GET[\'img\'];
$img = file_get_contents($imagesrc);
$im = imagecreatefromstring($img);
$width = imagesx($im);
$height = imagesy($im);
$newwidth = \'400\';
$newheight = \'800\';
$thumb = imagecreatetruecolor($newwidth, $newheight);
imagecopyresized($thumb, $im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
$filename = basename($imagesrc);
imagejpeg($thumb,\'image/\'.$filename); //save image as jpg
imagedestroy($thumb);
imagedestroy($im);
我的问题是如何将目录中存储的图像上传到wordpress?我知道如何使用
<form>
手动使用,但在成功裁剪图像后不知道如何操作,然后自动上载到wordpress数据库。
Update:
已尝试将其上载或保存到
wp-content\\uploads 然后我查看了wp管理/上传。php和我上传的图片没有显示在那里。