我正在使用Guillotine让用户转换图像。没有提供有关如何在服务器端实际应用转换的说明或示例。使用Intervention,您如何正确执行此操作?
使用以下说明将图像发送到服务器:
{ scale: 1.4, angle: 270, x: 10, y: 20, w: 900, h: 675 }
那么我们如何获取这些信息并将其应用于照片呢?
这是我到目前为止所拥有的:
// Gets the true initial orientation
$img->orientate();
// Mirrors the image to what the user sees
$img->flip('v')->flip('h');
if(isset($fileData['angle']) && $fileData['angle'] > 0 && $fileData['angle'] < 360){
$img->rotate($fileData['angle']);
}