All Projects → sveinbjornt → Phew

sveinbjornt / Phew

Licence: other
FLIF image viewer and QuickLook plugin for macOS

Programming Languages

objective c
16641 projects - #2 most used programming language
c
50402 projects - #5 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to Phew

qlZipInfo
MacOSX QuickLook Generator for zip, jar, tar, tar.gz (.tgz), tar.bz2 (.tbz2/.tbz), tar.Z. xar (.xar, .pkg), debian (.deb), RedHat Package Manager (.rpm), 7zip (.7z), xz, Microsoft cabinet (.cab), gzip (.gz), lha, BinHex 4.0 (.hqx), and Stuffit (.sit) archives, and ISO9660 images
Stars: ✭ 47 (-36.49%)
Mutual labels:  quicklook, quicklook-plugin
Assetcatalogtinkerer
An app that lets you open .car files and browse/extract their images.
Stars: ✭ 1,628 (+2100%)
Mutual labels:  quicklook, quicklook-plugin
Flif
Free Lossless Image Format
Stars: ✭ 3,668 (+4856.76%)
Mutual labels:  flif, image-compression
QuickLook.Plugin.ApkViewer
Android package preview for QuickLook
Stars: ✭ 77 (+4.05%)
Mutual labels:  quicklook, quicklook-plugin
ImagePicker
Android library to choose image from gallery or camera with option to compress result image
Stars: ✭ 73 (-1.35%)
Mutual labels:  image-viewer, image-compression
QLCARFiles
QuickLook plugin to visualize .car files (compiled Asset Catalogs)
Stars: ✭ 60 (-18.92%)
Mutual labels:  quicklook, quicklook-plugin
AsciiDocQuickLook
A QuickLook plugin to preview AsciiDoc files.
Stars: ✭ 24 (-67.57%)
Mutual labels:  quicklook, quicklook-plugin
node-flif
A Node wrapper for the FLIF executable
Stars: ✭ 43 (-41.89%)
Mutual labels:  flif, image-compression
barbar
DEPRECATED — OSX crypto-currency price ticker
Stars: ✭ 55 (-25.68%)
Mutual labels:  osx
mpv-image-viewer
Configuration, scripts and tips for using mpv as an image viewer
Stars: ✭ 157 (+112.16%)
Mutual labels:  image-viewer
libflif.js
Another trial to get FLIF to the web platform
Stars: ✭ 40 (-45.95%)
Mutual labels:  flif
blog
Source code for the posts of my blog https://theroadtodelphi.com/
Stars: ✭ 96 (+29.73%)
Mutual labels:  osx
jdk8u-xcode10
How to compile JDK 8u with Xcode 9, 10, 11 or 12 on macOS. Also with Shenandoah and JavaFX
Stars: ✭ 34 (-54.05%)
Mutual labels:  osx
dictionary-osx
Access the Mac OSX Dictionary app via the command line
Stars: ✭ 20 (-72.97%)
Mutual labels:  osx
rocksmithconvert
Simple standalone OSX app to convert Rocksmith 2014 .psarc (CDLC) files between PC and MAC.
Stars: ✭ 45 (-39.19%)
Mutual labels:  osx
view
Image Viewer for BART
Stars: ✭ 13 (-82.43%)
Mutual labels:  image-viewer
reactors
View components and APIs that work web, mobile and native!
Stars: ✭ 14 (-81.08%)
Mutual labels:  osx
MacOS-Dotfiles
No description or website provided.
Stars: ✭ 85 (+14.86%)
Mutual labels:  osx
installme-osx
My personal script to setup a new OSX
Stars: ✭ 57 (-22.97%)
Mutual labels:  osx
CoTerminalApps
Retro ASCII Puzzles plus SpaceInvaders, Pacman & Frogger arcade games that run WITH SOUND in a terminal on any platform !!
Stars: ✭ 21 (-71.62%)
Mutual labels:  osx

Phew - FLIF Image Viewer for macOS

Phew Application Icon

Phew is an open-source FLIF image viewer and QuickLook plugin for macOS.

The Free Lossless Image Format or FLIF is a novel lossless image format which outperforms PNG, lossless WebP, lossless BPG, lossless JPEG2000, and lossless JPEG XR in terms of compression ratio.

Phew can open and display FLIF images, and can export them as PNG, TIFF, BMP or raw pixel data. If the accompanying QuickLook Plug-In is installed, FLIF images show thumbnails and previews in the Finder and Spotlight just like regular images.

Animated FLIF images are currently not supported.

Installation

The Phew source code contains the FLIFImage class, which is an Objective-C wrapper to easily read images in the FLIF format via libflif. This class is available via CocoaPods. See below for further info.

Phew is also available through Homebrew Caskroom

brew cask install phew

Screenshots

Phew Screenshot

Phew Screenshot

Phew Screenshot

Phew Screenshot

Phew Screenshot

FLIFImage Objective-C Class

FLIFImage is an Objective-C wrapper to easily read images in the FLIF format via libflif, the official FLIF reference decoder implementation. You can install via CocoaPods.

FLIFImage exposes the following class methods:

+ (BOOL)isFLIFImageAtPath:(NSString *)path;
+ (BOOL)isFLIFImageData:(NSData *)data;

+ (NSImage *)imageFromFileAtPath:(NSString *)path;
+ (CGImageRef)newCGImageFromFileAtPath:(NSString *)path;

+ (NSImage *)imageFromData:(NSData *)data;
+ (CGImageRef)newCGImageFromData:(NSData *)data;

Those calling newCGImage* methods are responsible for releasing the returned CGImageRef.

License

Phew uses libflif, which is distributed under the GNU Lesser General Public License (LGPL), version 3 or later. Phew itself is also open source software, available under the three-clause BSD license:

Copyright (c) 2017, Sveinbjorn Thordarson <[email protected]>

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

  3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].