fix: reverts sharpening
Some checks are pending
tests / ci (push) Waiting to run

Issue with half-pixel values causing blurry fonts is fixed in Design Framework 1.2.0
This commit is contained in:
Benjamin Nussbaum 2025-07-28 21:40:42 +02:00
parent 7288fd7c6b
commit b4639b3ffb

View file

@ -125,9 +125,6 @@ class ImageGenerationService
$imagick->setImageType(Imagick::IMGTYPE_GRAYSCALE);
// Sharpen the image to make blurry text more defined
$imagick->sharpenImage(0.7, 0.5);
if ($quantize) {
$imagick->quantizeImage(2, Imagick::COLORSPACE_GRAY, 0, true, false);
}