Module: Rixmap::ImageIO
- Defined in:
- src/rixmapio.cxx,
lib/rixmap/imageio.rb,
src/rixmapio.cxx
Overview
IO系クラス定義モジュール.
Defined Under Namespace
Classes: BaseImageIO, ImageIOInfo
Constant Summary collapse
- MAGIC_BYTES_SIZE =
ファイルフォーマット識別用に読み取るマジックデータサイズ
16
Class Method Summary collapse
-
.find(argQuery) ⇒ Rixmap::ImageIO::ImageIOInfo
指定された条件から画像入出力実装情報を探します.
-
.findall(argQuery) ⇒ Array<Rixmap::ImageIO::ImageIOInfo>
指定された条件から画像入出力実装情報を全て探します.
-
.get(argName) ⇒ Rixmap::ImageIO::ImageIOInfo
指定した名前に対応する画像入出力実装情報を返します.
-
.new(name, *params) ⇒ Object
画像入出力実装のインスタンスを作成します.
- .open(path, *args) ⇒ Object
-
.register(*args) ⇒ Object
画像入出力実装クラスを登録します.
- .save(path, image, *args) ⇒ Object
Class Method Details
.find(argQuery) ⇒ Rixmap::ImageIO::ImageIOInfo
指定された条件から画像入出力実装情報を探します.
現在対応している条件は以下の通りです.
:magic
:image
:path
複数の条件が指定された場合は、すべてを満たす入出力実装を返します.
150 151 152 153 154 155 156 157 158 159 160 161 162 |
# File 'src/rixmapio.cxx', line 150
static VALUE ImageIO_Find(VALUE klass, VALUE argQuery) {
// すべて検索
VALUE infos = rb_funcall(klass, rb_intern("findall"), 1, argQuery);
// 空配列かどうか.
if (RARRAY_LEN(infos) > 0) {
// 空でないので、先頭を返す.
return rb_ary_entry(infos, 0);
} else {
// 空=見つからなった
return Qnil;
}
}
|
.findall(argQuery) ⇒ Array<Rixmap::ImageIO::ImageIOInfo>
指定された条件から画像入出力実装情報を全て探します.
現在対応している条件は以下の通りです.
:magic
:image
:path
複数の条件が指定された場合は、すべてを満たす入出力実装を返します.
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 |
# File 'src/rixmapio.cxx', line 185
static VALUE ImageIO_FindAll(VALUE klass, VALUE argQuery) {
// 条件を分解
VALUE condMagic = rb_hash_lookup(argQuery, ID2SYM(rb_intern("magic")));
VALUE condImage = rb_hash_lookup(argQuery, ID2SYM(rb_intern("image")));
VALUE condPath = rb_hash_lookup(argQuery, ID2SYM(rb_intern("path")));
// 条件が一つ以上あるか
if (NIL_P(condMagic) && NIL_P(condImage) && NIL_P(condPath)) {
rb_raise(rb_eArgError, "empty query is not supported. :magic, :image or :path is needed");
}
// レジストリ
VALUE registry = rb_iv_get(klass, "@registry");
// キーリスト
VALUE allKeys = rb_funcall(registry, rb_intern("keys"), 0);
// 配列オブジェクトを確保
VALUE iioInfoList = rb_ary_new();
// 各キーについて処理
long nkey = RARRAY_LEN(allKeys);
for (long i = 0; i < nkey; i++) {
VALUE tblKey = rb_ary_entry(allKeys, i);
VALUE tblVal = rb_hash_lookup(registry, tblKey);
// 値を調べる
if (NIL_P(tblVal) || !RTEST(rb_obj_is_kind_of(tblVal, cRixmapImageIOInfo))) {
// TODO 警告表示
continue;
}
// 一応
VALUE iioInfo = tblVal;
VALUE iioKlass = rb_iv_get(iioInfo, "@imageio");
// 条件でチェック
if (!NIL_P(condMagic) && !RTEST(rb_funcall(iioKlass, rb_intern("readable?"), 1, condMagic))) {
// 読み込めない
continue;
}
if (!NIL_P(condImage) && !RTEST(rb_funcall(iioKlass, rb_intern("writable?"), 1, condImage))) {
// 書き込めない
continue;
}
if (!NIL_P(condPath) && !RTEST(rb_funcall(iioInfo, rb_intern("match?"), 1, condPath))) {
// 対応している拡張子ではない
continue;
}
// 全部通過
rb_ary_push(iioInfoList, iioInfo);
}
// 見つかったものをすべて返す.
// ※ 見つからなかった場合は空配列
return iioInfoList;
}
|
.get(argName) ⇒ Rixmap::ImageIO::ImageIOInfo
指定した名前に対応する画像入出力実装情報を返します.
115 116 117 118 119 120 121 122 123 124 125 126 |
# File 'src/rixmapio.cxx', line 115
static VALUE ImageIO_Get(VALUE klass, VALUE argName) {
// キー名を作成
VALUE strName = rb_String(argName);
VALUE symName = ID2SYM(rb_intern_str(rb_funcall(strName, rb_intern("upcase"), 0)));
// レジストリから取得
VALUE registry = rb_iv_get(klass, "@registry");
VALUE info = rb_hash_lookup(registry, symName);
// 見つからなかった場合はnilになる
return info;
}
|
.new(name, *params) ⇒ Object
画像入出力実装のインスタンスを作成します.
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
# File 'src/rixmapio.cxx', line 82
static VALUE ImageIO_New(int argc, VALUE* argv, VALUE klass) {
VALUE argName, argParams;
rb_scan_args(argc, argv, "1*", &argName, &argParams);
// キー名を作成
VALUE strName = rb_String(argName);
VALUE symName = ID2SYM(rb_intern_str(rb_funcall(strName, rb_intern("upcase"), 0)));
// レジストリから取得
VALUE registry = rb_iv_get(klass, "@registry");
VALUE info = rb_hash_lookup(registry, symName);
// オブジェクトを作成
if (NIL_P(info)) {
rb_raise(rb_eNotImpError, "Image-IO for %s is not implemented.", StringValueCStr(strName));
}
VALUE klsIIO = rb_funcall(info, rb_intern("imageio"), 0);
if (NIL_P(klsIIO)) {
rb_raise(rb_eNotImpError, "Image-IO for %s is not implemented.", StringValueCStr(strName));
}
long nparam = RARRAY_LEN(argParams);
VALUE* params = RARRAY_PTR(argParams);
VALUE iio = rb_class_new_instance(nparam, params, klsIIO);
return iio;
}
|
.open(path, options = {}) ⇒ Rixmap::Image .open(path, format, options = {}) ⇒ Rixmap::Image
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
# File 'lib/rixmap/imageio.rb', line 24 def self.open(path, *args) # 引数をチェック format = nil = {} unless args[0].nil? if args[0].kind_of?(Hash) = args[0] else format = args[0] if !args[1].nil? && args[1].kind_of?(Hash) = args[1] end end end # ImageIOを探索 info = nil if format.nil? info = self.find(:path => path) if info.nil? # パスから判定できない場合はマジックデータから検索 magic = IO.binread(path, MAGIC_BYTES_SIZE) info = self.find(:magic => magic) end # 見つからない場合は例外を出す if info.nil? raise NotImplementedError.new("ImageIO Implementation for File is not found: #{path}") end else info = self.get(format) if info.nil? raise NotImplementedError.new("ImageIO Implementation for #{format} is not found.") end end # 読み込みを実施 iio = info.imageio.new() return iio.open(path) end |
.register(name, klass, extensions = []) .register(name, info)
画像入出力実装クラスを登録します.
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'src/rixmapio.cxx', line 34
static VALUE ImageIO_Register(int argc, VALUE* argv, VALUE klass) {
VALUE argName, arg1, arg2;
rb_scan_args(argc, argv, "21", &argName, &arg1, &arg2);
// 名前を大文字化
VALUE strName = rb_funcall(rb_String(argName), rb_intern("upcase"), 0);
if (RSTRING_LEN(strName) == 0) {
rb_raise(rb_eArgError, "empty name is not valid");
}
VALUE symName = ID2SYM(rb_intern_str(strName));
// 引数で変更
VALUE info = Qnil;
if (RB_TYPE_P(arg1, T_CLASS)) {
// klass
VALUE objExts = Qnil;
if (NIL_P(arg2)) {
objExts = rb_ary_new();
} else {
objExts = rb_Array(arg2);
}
VALUE params[2] = {
arg1, objExts
};
info = rb_class_new_instance(2, params, cRixmapImageIOInfo);
} else if (RTEST(rb_obj_is_kind_of(arg1, cRixmapImageIOInfo))) {
// iio info
info = rb_obj_clone(arg1);
} else {
rb_raise(rb_eArgError, "unknown imageio type: %s", rb_obj_classname(arg1));
}
// レジストリへ入れる
VALUE registry = rb_iv_get(klass, "@registry");
OBJ_FREEZE(info);
rb_hash_aset(registry, symName, info);
return info;
}
|
.save(path, image, options = {}) .save(path, image, format, options = {})
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
# File 'lib/rixmap/imageio.rb', line 81 def self.save(path, image, *args) # パラメータ処理 format = nil = {} unless args[0].nil? if args[0].kind_of?(Hash) = args[0] else format = args[0] if !args[1].nil? && args[1].kind_of?(Hash) = args[1] end end end # ImgaeIO探索 info = nil if format.nil? info = self.find(:path => path) if info.nil? raise NotImplementedError.new("ImageIO Implementation for File is not found: #{path}") end else info = self.get(format) if info.nil? raise NotImplementedError.new("ImageIO Implementation for #{format} is not found.") end end # 書き込み可能かどうかをチェックしつつ書き込み. iio = info.imageio.new() if iio.writable?(image) return iio.save(path, image) else raise NotImplementedError.new("#{iio.class} is not designed for image #{image.inspect}") end end |