diff options
author | zotlabs <mike@macgirvin.com> | 2017-11-21 17:30:40 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-11-21 17:30:40 -0800 |
commit | 6ac3fc4e0724a881ed3b26fa8d0912f38512d2ca (patch) | |
tree | e8a91efc272bab533555d97a7a0533c563a00853 /Zotlabs/Thumbs/Mp3audio.php | |
parent | babe14410c92b2ae6985aebf69d0e755c0fc2045 (diff) | |
parent | d942818bd9d9e90db7a3083bfe33a54732f6184d (diff) | |
download | volse-hubzilla-6ac3fc4e0724a881ed3b26fa8d0912f38512d2ca.tar.gz volse-hubzilla-6ac3fc4e0724a881ed3b26fa8d0912f38512d2ca.tar.bz2 volse-hubzilla-6ac3fc4e0724a881ed3b26fa8d0912f38512d2ca.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
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'); + } + } +} + |