php - How to replace black background with white when resizing/converting PNG images with transparen
This is all in the manual, actually. imagecolorallocate - Returns a color identifier representing the color composed of the given RGB components. And for the alpha transparency, you need to use imagecolorallocatealpha, which indeed adds a 5th parameter: p...