我创建了一个页面用于图像转换。我想将图像从.ai转换为.jpg。但是问题是我如何获取AI文件的尺寸(宽度和高度)。我已经尝试了getimagesize()但它不是工作,它给我空白的答复。
这是我的php代码
if($fileType == 'psd' || $fileType == 'ai' || $fileType == 'eps' || $fileType == 'pdf'){
$source_file_name = get_file_name(basename($_FILES["sfile"]["name"]));
if (move_uploaded_file($_FILES["sfile"]["tmp_name"],SOURCE_UPLOAD_PATH.$source_file_name)) {
//get dimensions of image
$dimensions = getimagesize(SOURCE_UPLOAD_PATH.$source_file_name);
echo "<pre>";
print_r($dimensions);exit;
答案 0 :(得分:1)
您可以使用Imagick
<?php
$image = new Imagick();
$image->readimage($imagePath);
if ($fileType == "psd" || $fileType == "ai"){
$image->setIteratorIndex(0);
}
$dimensions = $image->getImageGeometry();
$width = $dimensions['width'];
$height = $dimensions['height'];
echo "Your image is $width by $height pixels";