目录
目录README.md

SwiftGL Image Library

SwiftGL is libraries for graphics programming that’s 100% Swift.

To use, include dependency in your Package.swift:

let package = Package(
    dependencies: [
        .Package(url: "https://github.com/SwiftGL/Image.git", majorVersion: 2)
    ]
)

Then import SGLImage in your swift file.

Getting Started

Currently, BMP, PNG and GIF importing are working. This is all 100% Swift, there are no bindings to any external code at all.

import SwiftGLres
let loader = SGLImageLoader(fromFile: "/path/to/file.bmp")
assert(loader.error == nil, loader.error!)
// You can inspect info like loader.decoder!.channels here.
// Images are automatically converted to fit any SGLImageType provided.
let image = SGLImageRGB<UInt8>(loader)
assert(loader.error == nil, loader.error!)

Loading into floats will make the color channels linear by applying a gamma of 2.2. You can change the gamma in the loader. If the image specifies a gamma, it will set the loader to match.

There’s also an inflate (gzip) algorithm you can use.

关于
80.0 KB
邀请码
    Gitlink(确实开源)
  • 加入我们
  • 官网邮箱:gitlink@ccf.org.cn
  • QQ群
  • QQ群
  • 公众号
  • 公众号

©Copyright 2023 CCF 开源发展委员会
Powered by Trustie& IntelliDE 京ICP备13000930号