summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlivier Paroz <github@oparoz.com>2015-01-24 16:33:29 +0100
committerOlivier Paroz <github@oparoz.com>2015-02-24 22:00:54 +0100
commitf49805eea56dcd607871fda5f31b42e02f1b1361 (patch)
tree95d03d1feccc3d88f18e5c4934b7d7ff460315e4
parent09a06e4f0a2d473e1dc3ea1d92fefc3cfa318d4d (diff)
downloadnextcloud-server-f49805eea56dcd607871fda5f31b42e02f1b1361.tar.gz
nextcloud-server-f49805eea56dcd607871fda5f31b42e02f1b1361.zip
Add support for font previews
-rw-r--r--config/config.sample.php1
-rw-r--r--lib/private/preview.php3
-rw-r--r--lib/private/preview/font.php19
3 files changed, 22 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 10b079caa8a..342269101b1 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -679,6 +679,7 @@ $CONFIG = array(
* - OC\Preview\StarOffice
* - OC\Preview\SVG
* - OC\Preview\TIFF
+ * - OC\Preview\Font
*
* .. note:: Troubleshooting steps for the MS Word previews are available
* at the :doc:`collaborative_documents_configuration` section
diff --git a/lib/private/preview.php b/lib/private/preview.php
index c276fa5489a..5b47b34f05b 100644
--- a/lib/private/preview.php
+++ b/lib/private/preview.php
@@ -731,6 +731,7 @@ class Preview {
* - OC\Preview\Illustrator
* - OC\Preview\Postscript
* - OC\Preview\Photoshop
+ * - OC\Preview\Font
*/
if(empty(self::$enabledProviders)) {
self::$enabledProviders = \OC::$server->getConfig()->getSystemValue('enabledPreviewProviders', array(
@@ -790,8 +791,8 @@ class Preview {
'PDF' => 'OC\Preview\PDF',
'AI' => 'OC\Preview\Illustrator',
'PSD' => 'OC\Preview\Photoshop',
- // Requires adding 'eps' => array('application/postscript', null), to lib/private/mimetypes.list.php
'EPS' => 'OC\Preview\Postscript',
+ 'TTF' => 'OC\Preview\Font',
);
foreach ($imagickProviders as $queryFormat => $provider) {
diff --git a/lib/private/preview/font.php b/lib/private/preview/font.php
new file mode 100644
index 00000000000..58d64e8264d
--- /dev/null
+++ b/lib/private/preview/font.php
@@ -0,0 +1,19 @@
+<?php
+/**
+ * @copyright Olivier Paroz 2015 <owncloud@interfasys.ch>
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ */
+
+namespace OC\Preview;
+
+// .otf, .ttf and .pfb
+class Font extends Bitmap {
+ /**
+ * {@inheritDoc}
+ */
+ public function getMimeType() {
+ return '/application\/(?:font-sfnt|x-font$)/';
+ }
+} \ No newline at end of file