mirror of
https://github.com/Nyx0uf/qlImageSize.git
synced 2026-02-26 18:24:15 +01:00
20 lines
414 B
Objective-C
20 lines
414 B
Objective-C
//
|
|
// webp_decode.h
|
|
// qlImageSize
|
|
//
|
|
// Created by @Nyx0uf on 30/12/14.
|
|
// Copyright (c) 2014 Nyx0uf. All rights reserved.
|
|
//
|
|
|
|
|
|
#import "tools.h"
|
|
|
|
|
|
#ifdef NYX_QL_SUPPORT_WEBP_DECODE
|
|
CF_RETURNS_RETAINED CGImageRef decode_webp_at_path(CFStringRef filepath, image_infos* infos);
|
|
#endif
|
|
|
|
#ifdef NYX_MD_SUPPORT_WEBP_DECODE
|
|
bool get_webp_informations_for_filepath(CFStringRef filepath, image_infos* infos);
|
|
#endif
|