Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions getid3/module.graphic.bmp.php
Original file line number Diff line number Diff line change
Expand Up @@ -676,12 +676,16 @@ public function PlotBMP(&$BMPinfo) {
}
if (headers_sent()) {
echo 'plotted '.($BMPinfo['resolution_x'] * $BMPinfo['resolution_y']).' pixels in '.(time() - $starttime).' seconds<BR>';
imagedestroy($im);
if (PHP_VERSION_ID < 80000) { // imagedestroy does nothing after PHP8 and give deprecation warnings in PHP8.5
imagedestroy($im);
}
exit;
} else {
header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
if (PHP_VERSION_ID < 80000) {
imagedestroy($im);
}
return true;
}
}
Expand Down