'image/png', 'name' => $this->l10n->t('Image (.png)')], ]) ]; } public function convertFile(File $file, string $targetMimeType): mixed { $image = imagecreatefromstring($file->getContent()); imagepalettetotruecolor($image); ob_start(); imagepng($image); return ob_get_clean(); } }