使用 JQuery 和 PHP 进行图像处理

发布于 2024-08-29 12:16:33 字数 352 浏览 2 评论 0原文

我想做某种图像编辑器,在上传更多图像后,我会制作一个包含所有缩略图的列表!

之后,我希望能够单击一个拇指并旋转、复制、拖放(以更改图像的位置)以及删除图像。我希望所有图像都在 php 数组中。如果删除图像,我也想从数组中删除该行。如果拖放图像,我也想更改数组中的位置。

好的,当用户上传所有图像并修改其中一些图像后,如何制作一个 DONE 按钮来保存图像的位置?

我已经准备好了所有这些,我只需要知道用jquery“编辑”后如何保存图像列表?我需要一个保存按钮或其他东西

对于这个小项目,您建议我如何保存图像? (在mysql中创建一个表并根据会话id将图像的名称存储在数据库中?取决于IP?)

欢迎任何建议!

I want to do some kind of image editor, after I upload more images I make a list with all the thumbnails!

After, I want to be able to click on one thumb and rotate, duplicate, drag and drop (to change positions of the images), and delete the image. I want all the images to be in a php array. If an image is deleted I want to delete the row from array too. If a image is drag-and-dropped I want to change the position in the array too.

Ok, after the user uploads all the images and modifies some of them, how can I make a DONE button to save the positions of the images?

I made all ready all this, i only need to know how i can save the list of images after i "edit" with jquery? i need a save button or something

For this small project how do you suggest I save the images? (to make a table in mysql and store the names of the images in the database depending on the session id? depending on the IP?)

Any suggestions are welcome!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

不疑不惑不回忆 2024-09-05 12:16:33

方式,太包罗万象的问题。

我的建议:

  • 熟悉 gdImageMagick
  • 熟悉 jQuery UI,尤其是拖动和拖动功能。放置功能
  • 将图像存储在磁盘上的临时文件夹中
    • 围绕它编写一个缓存机制,定期清除文件夹中未使用的图像
    • 哈希值有助于从缓存中检索图像
    • 围绕

  • 在会话中存储状态

对此做一些工作并返回更具体的问题。

Way, waaay too all-encompassing question.

My suggestions:

  • Get familiar with gd or ImageMagick
  • Get familiar with jQuery UI, especially the drag & drop functionality
  • Store images in a temp folder on disk
    • Write a caching mechanism around it that'll clear the folder of unused images in regular intervals
    • Hashes can help to retrieve images from cache
  • Store state in a session

Do some work on this and come back with more specific questions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文