module Imagecr

Defined in:

imagecr.cr
imagecr/engine.cr
imagecr/errors.cr
imagecr/handler.cr
imagecr/handlers/bmp_handler.cr
imagecr/handlers/gif_handler.cr
imagecr/handlers/png_handler.cr
imagecr/handlers/psd_handler.cr
imagecr/handlers/tiff_handler.cr
imagecr/handlers/unknown_handler.cr
imagecr/image.cr
imagecr/open_strategy/abstract.cr
imagecr/open_strategy/local.cr
imagecr/open_strategy/remote.cr
imagecr/version.cr

Constant Summary

MAJOR = "0"
MINOR = "1"
PATCH = "0"
VERSION = [MAJOR, MINOR, PATCH].join(".")

Class Method Summary

Class Method Detail

def self.open(path : String) #

Open an image from a string. It can be a local path or remote path.


[View source]
def self.open(io : IO) #

Open an image from an IO object


[View source]