added half scale

This commit is contained in:
2023-02-05 12:23:27 +10:00
parent 1452d6f340
commit 8f7f1a35d5

View File

@@ -90,7 +90,7 @@ class OCRController extends ApiController
// Generate a temporary filename for the doubled-scale image
$tmpfname_scaled = tempnam(sys_get_temp_dir(), 'double_scale');
imagejpeg($dstImage, $tmpfname_scaled);
imagepng($dstImage, $tmpfname_scaled);
imagedestroy($srcImage);
imagedestroy($dstImage);
@@ -100,6 +100,31 @@ class OCRController extends ApiController
unlink($tmpfname_scaled);
$data['ocr_double_scale'] = $result;
// Half Scale
$result = '';
$srcImage = imagecreatefrompng($tmpfname);
$srcWidth = imagesx($srcImage);
$srcHeight = imagesy($srcImage);
$dstWidth = ($srcWidth / 2);
$dstHeight = ($srcHeight / 2);
$dstImage = imagecreatetruecolor($dstWidth, $dstHeight);
// Copy and resize the original image onto the new canvas
imagecopyresampled($dstImage, $srcImage, 0, 0, 0, 0, $dstWidth, $dstHeight, $srcWidth, $srcHeight);
// Generate a temporary filename for the doubled-scale image
$tmpfname_scaled = tempnam(sys_get_temp_dir(), 'double_scale');
imagepng($dstImage, $tmpfname_scaled);
imagedestroy($srcImage);
imagedestroy($dstImage);
// OCR it
$ocr->image($tmpfname_scaled);
$result = $ocr->run(500);
unlink($tmpfname_scaled);
$data['ocr_half_scale'] = $result;
unlink($tmpfname);
return $this->respondJson($data);
}//end if