PHP AJAX - 上传和裁剪
我在此网站上找到了一个脚本 - 上传和裁剪图像 http:// /onlinewebapplication.com/2011/08/image-upload-cropping-php-jquery.html 一切正常,但我需要为新图像添加新名称...
当我上传图像时->在裁剪之前我可以更改文件名,但它仅适用于大图像,对于拇指我不知道,因为变量是由 AJAX 发送的。
我的版本在这里工作 - 链接 第一个输入用于文件路径,第二个输入用于新文件名。
我需要更改大图像和拇指的名称,但它仅适用于大图像。 如何将变量“image_name”发送到ajax_image.php?
有人吗?请帮助我,我需要这个..谢谢
I found a script - Upload and Crop image on this website http://onlinewebapplication.com/2011/08/image-upload-cropping-php-jquery.html Everything works fine, but I need to add my new name for new images...
When I upload an image -> before crop I can change file name, but it works only for big images, for thumb I don't have an idea because the variables are sent by AJAX.
My version works here - link
first input is for file path, second for new filename..
I need change name for big image and thumb, but it works only for big.
How send variable "image_name" to ajax_image.php ?
Anyone ? Please help me, I need this ..Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在这一行中更改大图像的名称:
对于小图像,您可以通过将名称作为参数传递:将 this: 更改
为:
对于小图像,再次将 ajax_image.php 中的 this: 更改
为:
You can change the name for the big image in this line:
and for the small image you can pass the name as parameter by changing this:
to this:
also for the small image again change in ajax_image.php this:
to this: