-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathconvert.php
39 lines (31 loc) · 1.17 KB
/
convert.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
/**
* Add frame to profile picture
* @param string $sourcePath Path to profile picture
* @param int $design Frame to use
* @return binary Binary data of framed profile picture
*/
function makeDP($sourcePath, $design = 0){
if(in_array($design, array(0, 1, 2)))
$design = "frame-$design.png";
else
exit;
$src = imagecreatefromstring(file_get_contents($sourcePath));
$fg = imagecreatefrompng(__DIR__ . "/frames/$design");
list($width, $height) = getimagesize($sourcePath);
$croppedFG = imagecreatetruecolor($width, $height);
$background = imagecolorallocate($croppedFG, 0, 0, 0);
// removing the black from the placeholder
imagecolortransparent($croppedFG, $background);
imagealphablending($croppedFG, false);
imagesavealpha($croppedFG, true);
imagecopyresized($croppedFG, $fg, 0, 0, 0, 0, $width, $height, 400, 400);
// Start merging
$out = imagecreatetruecolor($width, $height);
imagecopyresampled($out, $src, 0, 0, 0, 0, $width, $height, $width, $height);
imagecopyresampled($out, $croppedFG, 0, 0, 0, 0, $width, $height, $width, $height);
ob_start();
imagepng($out);
$image = ob_get_clean();
return $image;
}