0

Silverstripe フレームワークを使用した画像データベースの構築に取り組んでいます。大きな tiff ファイルをアップロードできる必要があり、jpeg に変換する必要があります。それを行うための組み込み関数はありますか、それともライブラリを使用する必要がありますか? よろしく、フロリアン

4

1 に答える 1

0

SilverStripe doesn't have built-in image conversion utilities, just a GD class which mainly handles resizing of existing images (in gif/jpg/png).

ImageMagick supports conversion of TIFFs (see supported formats). I'm sure you can find PHP wrapper libraries for it (doesn't have to be specific to SilverStripe), or use the commandline tool directly via exec().

Other than that, we have the UploadField class to handle uploads. It uses the jQuery fileupload plugin, which supports larger files (although server timeouts and PHP config play a role here as well). You might want to look into chunked uploads.

于 2012-11-21T23:59:14.570 に答える