ruby-vips 2.0.3 → 2.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/VERSION +1 -1
- data/lib/vips/image.rb +14 -1
- data/lib/vips/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2446e29083185a98ac3bb6188f4aea09e5e0cd4e
|
4
|
+
data.tar.gz: ef6ef9641798e39418476661573f9227bab6d946
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: acf05666f8e861380016b9d9e86ec7a3e617964b9c77b72ff5fe284e6c0cbd9f23b9888c5031bc67b522e189047cd6823583fb4bc055b0f73399d286e69f54d5
|
7
|
+
data.tar.gz: 3d699ef4ba6799dd787d4a534cb8858a4c1ed3aa88237825b390e1c746d7e608f4ed8a9e50a2af18de22b8314cc0074a8afbd4fe83f379fc0b9070c4826beb6b
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.0.
|
1
|
+
2.0.4
|
data/lib/vips/image.rb
CHANGED
@@ -29,7 +29,15 @@ module Vips
|
|
29
29
|
attach_function :vips_image_get_typeof, [:pointer, :string], :GType
|
30
30
|
attach_function :vips_image_get,
|
31
31
|
[:pointer, :string, GObject::GValue.ptr], :int
|
32
|
-
|
32
|
+
|
33
|
+
# vips_image_get_fields was added in libvips 8.5
|
34
|
+
begin
|
35
|
+
attach_function :vips_image_get_fields, [:pointer], :pointer
|
36
|
+
HAS_IMAGE_GET_FIELDS = true
|
37
|
+
rescue FFI::NotFoundError
|
38
|
+
HAS_IMAGE_GET_FIELDS = false
|
39
|
+
end
|
40
|
+
|
33
41
|
attach_function :vips_image_set,
|
34
42
|
[:pointer, :string, GObject::GValue.ptr], :void
|
35
43
|
attach_function :vips_image_remove, [:pointer, :string], :void
|
@@ -498,6 +506,11 @@ module Vips
|
|
498
506
|
#
|
499
507
|
# @return [[String]] array of field names
|
500
508
|
def get_fields
|
509
|
+
# vips_image_get_fields() was added in libvips 8.5
|
510
|
+
if not Vips::HAS_IMAGE_GET_FIELDS
|
511
|
+
return []
|
512
|
+
end
|
513
|
+
|
501
514
|
array = Vips::vips_image_get_fields self
|
502
515
|
|
503
516
|
names = []
|
data/lib/vips/version.rb
CHANGED