diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-11-21 10:20:41 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-11-21 10:20:41 +0100 |
commit | e2814f5d8046329486073294dd1fd588efe5e052 (patch) | |
tree | f6491e4835c152d88eb14e724a05ce34e014d2a5 /Zotlabs/Thumbs/Mp3audio.php | |
parent | 542d9130b5af8a93736051c1359c17c1d45bd750 (diff) | |
parent | 53445ba6bdd1cde780f4a3d84cbb061cb6b72df9 (diff) | |
download | volse-hubzilla-e2814f5d8046329486073294dd1fd588efe5e052.tar.gz volse-hubzilla-e2814f5d8046329486073294dd1fd588efe5e052.tar.bz2 volse-hubzilla-e2814f5d8046329486073294dd1fd588efe5e052.zip |
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'Zotlabs/Thumbs/Mp3audio.php')
-rw-r--r-- | Zotlabs/Thumbs/Mp3audio.php | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Zotlabs/Thumbs/Mp3audio.php b/Zotlabs/Thumbs/Mp3audio.php new file mode 100644 index 000000000..000d65b22 --- /dev/null +++ b/Zotlabs/Thumbs/Mp3audio.php @@ -0,0 +1,37 @@ +<?php + +namespace Zotlabs\Thumbs; + +use \ID3Parser\ID3Parser; + +class Mp3audio { + + function Match($type) { + return(($type === 'audio/mpeg') ? true : false ); + } + + function Thumb($attach,$preview_style,$height = 300, $width = 300) { + $p = new ID3Parser(); + + $id = $p->analyze(dbunescbin($attach['content'])); + + $photo = isset($id['id3v2']['APIC'][0]['data']) ? $id['id3v2']['APIC'][0]['data'] : null; + if(is_null($photo) && isset($id['id3v2']['PIC'][0]['data'])) { + $photo = $id['id3v2']['PIC'][0]['data']; + } + + if($photo) { + $image = imagecreatefromstring($photo); + $dest = imagecreatetruecolor( $width, $height ); + $srcwidth = imagesx($image); + $srcheight = imagesy($image); + + imagealphablending($dest, false); + imagesavealpha($dest, true); + imagecopyresampled($dest, $image, 0, 0, 0, 0, $width, $height, $srcwidth, $srcheight); + imagedestroy($image); + imagejpeg($dest,dbunescbin($attach['content']) . '.thumb'); + } + } +} + |