scph5500.bin 26-Aug-2018 20:47 512.0K
scph5501.bin 26-Aug-2018 20:47 512.0K
scph5502.bin 26-Aug-2018 20:47 512.0K
| // require modules | |
| var express = require('express'), | |
| i18n = require('i18n'), | |
| hbs = require('hbs'), | |
| app = module.exports = express(); | |
| i18n.configure({ | |
| locales: ['en', 'fr'], | |
| cookie: 'locale', | |
| directory: "" + __dirname + "/locales" |
scph5500.bin 26-Aug-2018 20:47 512.0K
scph5501.bin 26-Aug-2018 20:47 512.0K
scph5502.bin 26-Aug-2018 20:47 512.0K
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteBase /subdirectory | |
| RewriteRule ^index\.html$ - [L] | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteCond %{REQUEST_FILENAME} !-l | |
| RewriteRule . /index.html [L] | |
| </IfModule> |
| .bd-placeholder-img { | |
| font-size: 1.125rem; | |
| text-anchor: middle; | |
| -webkit-user-select: none; | |
| -moz-user-select: none; | |
| user-select: none; | |
| } | |
| @media (min-width: 768px) { | |
| .bd-placeholder-img-lg { |
This guide will walk you through installing ImageMagick from source on a Linux system (Debian/Ubuntu-based) and configuring it with HEIC format support.
First, clone the official ImageMagick Git repository into /usr/local/src:
sudo git clone https://github.com/ImageMagick/ImageMagick.git /usr/local/src/ImageMagick