0

Is it possible to have an upload form which allows a user to upload a large high resolution image, and have it auto-crop/resize and save the many multiple items into a file directory structure?

Basically clients are going to upload images for various accessories, which need to have the proper aspect ratios. It needs to resize and crop the images and store them in a directory system organized in a way that the rest of the site can call the images for various reason (products, galleries, etc).

Is this possible?

4

1 に答える 1

1

確かに、ImageMagickを使用して画像を作成し、HTML を使用して画像をアップロードし、プレーンな古い PHP を使用して画像をディスクに書き込む (そして ImageMagick ライブラリを呼び出す) ことができます。

したがって、ワークフローは次のようになります。

  • クライアントは、Web ページのフォームを介して画像をアップロードします。
  • 画像を受信したサーバーはスクリプトを呼び出し、サーバー上で ImageMagick を呼び出して、複数の画像を作成し、トリミングしてサイズを変更します。
  • このスクリプトは、サーバーのファイル システムに画像を保存することも処理します。
于 2013-03-28T19:31:35.447 に答える