Просмотр поста

.
Senje
NaN is number
Добавлено: 31.07.2024 / 03:38
https://github.com/MaestroErro ... o-jpg
While upload call:
Maestroerror\HeicToJpg::convert("file.heic")->saveAs("file.jpg");

Example for forum:
1. Open forum/index.php
2. Find array $ext_pic[] and add .heic format
3. Open forum/includes/addfile.php
4. At 97 line where is "move_uploaded_file"
5. In the condition add code
if (strtolower($ext[1]) == "heic") {
Maestroerror\HeicToJpg::convert("../files/forum/attach/".$fname)->saveAs("../files/forum/attach/".$ext[0].".jpg");
$fname = $ext[0].".jpg";
}
6. Done
Dont forget to include library at top of the file

Добавлено: 31.07.2024 / 03:43
In this example original .heic file have saved. If you want to delete him use unlink after convert:
unlink("../files/forum/attach/".$fname)