PHP AJAX - 上传和裁剪

发布于 2024-12-11 12:17:54 字数 519 浏览 0 评论 0原文

我在此网站上找到了一个脚本 - 上传和裁剪图像 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哥,最终变帅啦 2024-12-18 12:17:54

您可以在这一行中更改大图像的名称:

$actual_image_name = time().substr($txt, 5).".".$ext;

对于小图像,您可以通过将名称作为参数传递:将 this: 更改

url:"ajax_image.php?t=ajax&img="+$("#image_name").val()+"&w="...etc

为:

url:"ajax_image.php?sname=blabla&t=ajax&img="+$("#image_name").val()+"&w="...etc

对于小图像,再次将 ajax_image.php 中的 this: 更改

$new_name = "small".$session_id.".jpg"; // Thumbnail image name

为:

$new_name = "smallqa".$_GET['sname'].".jpg"; // Thumbnail image name

You can change the name for the big image in this line:

$actual_image_name = time().substr($txt, 5).".".$ext;

and for the small image you can pass the name as parameter by changing this:

url:"ajax_image.php?t=ajax&img="+$("#image_name").val()+"&w="...etc

to this:

url:"ajax_image.php?sname=blabla&t=ajax&img="+$("#image_name").val()+"&w="...etc

also for the small image again change in ajax_image.php this:

$new_name = "small".$session_id.".jpg"; // Thumbnail image name

to this:

$new_name = "smallqa".$_GET['sname'].".jpg"; // Thumbnail image name
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文