stbimage 0.3.0 → 0.4.0
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/README.md +5 -4
- data/lib/stbimage.rb +41 -7
- data/utils/system_check.rb +51 -0
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8c7e3cbdd4dccecf5bf9a5c6ebc0365b6466fde88658ba4cc55d9b8d723217b5
|
4
|
+
data.tar.gz: 32f870bd08f340ac675e3d1a68bced77b0201b9fe7c73ea58bcee53314df131c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a1e041c4080ea9a88292ee5b5b8882a228b0a3ce485ab5eea544cca27576f8e4ccd05e2858e1b0d77b517c004658db6a5d62845b409d44dd0b7d0a4dbdaf313
|
7
|
+
data.tar.gz: 9507fa97a2455e1280d402ebe1419eca0db673e8b7c9001253d7070ddfc1be99e130a31e12eba38f26c6f68f34fe5438a07623bf8c73ae29820243029c7c986c
|
data/README.md
CHANGED
@@ -5,6 +5,7 @@
|
|
5
5
|
Ruby binding of stb-image.h
|
6
6
|
|
7
7
|
**Works well on windows!!!**
|
8
|
+
**Added support for Linux (32, 64, arm)**
|
8
9
|
|
9
10
|
* ### Supports (so far): ###
|
10
11
|
<br>
|
@@ -41,7 +42,7 @@ Ruby binding of stb-image.h
|
|
41
42
|
* Linux/macOs:\
|
42
43
|
`gem install stbimage`
|
43
44
|
|
44
|
-
*Note: In
|
45
|
+
*Note: In macOs you have to compile the dynamic libary (.so) yourself. Although I planned to include it in the future*
|
45
46
|
|
46
47
|
<br>
|
47
48
|
|
@@ -56,11 +57,11 @@ You can find it under [dlls](dlls) folder
|
|
56
57
|
```ruby
|
57
58
|
require 'stbimage'
|
58
59
|
|
59
|
-
# use this to load the dll (from gem version 0.2.3 and above)! Only For windows yet
|
60
|
+
# use this to load the dll (from gem version 0.2.3 and above)! Only For windows and linux yet
|
60
61
|
STBIMAGE.load_lib()
|
61
62
|
|
62
|
-
# In
|
63
|
-
# STBIMAGE.load_lib('your_name.so', 'absolute_path_to_file')
|
63
|
+
# In macOs you have to provide a dynamic libary (.so) by yourself
|
64
|
+
# STBIMAGE.load_lib('your_name.so', 'absolute_path_to_file')
|
64
65
|
|
65
66
|
|
66
67
|
width = ' ' * 4
|
data/lib/stbimage.rb
CHANGED
@@ -34,14 +34,48 @@ module STBIMAGE
|
|
34
34
|
# Load native dll libary
|
35
35
|
def self.load_lib(lib = nil, path = nil, output_error = false)
|
36
36
|
if lib == nil && path == nil
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
37
|
+
|
38
|
+
if RUBY_PLATFORM =~ /x86/
|
39
|
+
|
40
|
+
# puts "You have a 32-bit Architecture ruby"
|
41
|
+
if RUBY_PLATFORM =~ /mswin/ || RUBY_PLATFORM =~ /mingw/
|
42
|
+
# puts "With Windows"
|
43
|
+
lib, path = 'stbDLL_x86.dll', "#{__dir__}/../dlls"
|
44
|
+
elsif RUBY_PLATFORM =~ /linux/ || RUBY_PLATFORM =~ /cygwin/
|
45
|
+
# puts "With Linux"
|
46
|
+
lib, path = 'libstb_x86.so', "#{__dir__}/../dlls"
|
47
|
+
elsif RUBY_PLATFORM =~ /darwin/
|
48
|
+
# puts "With macOS"
|
49
|
+
else
|
50
|
+
# puts "I have no idea what os are you using, so it's possible that stbimage wont't work"
|
51
|
+
end
|
52
|
+
|
53
|
+
elsif RUBY_PLATFORM =~ /arm/
|
54
|
+
|
55
|
+
# puts "You have a arm architecture"
|
56
|
+
lib, path = 'libstb_arm.so', "#{__dir__}/../dlls"
|
57
|
+
|
58
|
+
elsif RUBY_PLATFORM =~ /java/
|
59
|
+
|
60
|
+
# puts "You have jruby!"
|
61
|
+
|
62
|
+
else
|
63
|
+
|
64
|
+
# puts "You have a 64-bit Architecture ruby"
|
65
|
+
if RUBY_PLATFORM =~ /mswin/ || RUBY_PLATFORM =~ /mingw/
|
66
|
+
# puts "With Windows"
|
67
|
+
lib, path = 'stbDLL_x64.dll', "#{__dir__}/../dlls"
|
68
|
+
elsif RUBY_PLATFORM =~ /linux/ || RUBY_PLATFORM =~ /cygwin/
|
69
|
+
# puts "With Linux"
|
70
|
+
lib, path = 'libstb_x64.so', "#{__dir__}/../dlls"
|
71
|
+
elsif RUBY_PLATFORM =~ /darwin/
|
72
|
+
# puts "With macOS"
|
73
|
+
else
|
74
|
+
# puts "I have no idea what os are you using, so it's possible that stbimage wont't work"
|
75
|
+
end
|
76
|
+
|
44
77
|
end
|
78
|
+
|
45
79
|
end
|
46
80
|
|
47
81
|
if path
|
@@ -0,0 +1,51 @@
|
|
1
|
+
RUBY_PLATFORM = x86-mingw32
|
2
|
+
|
3
|
+
if RUBY_PLATFORM =~ /x86/
|
4
|
+
|
5
|
+
puts "You have a 32-bit Architecture ruby"
|
6
|
+
if RUBY_PLATFORM =~ /mswin/ || RUBY_PLATFORM =~ /mingw/
|
7
|
+
puts "With Windows"
|
8
|
+
lib, path = 'stbDLL_x86.dll', "#{__dir__}/../dlls"
|
9
|
+
elsif RUBY_PLATFORM =~ /linux/ || RUBY_PLATFORM =~ /cygwin/
|
10
|
+
puts "With Linux"
|
11
|
+
lib, path = 'libstb_x86.so', "#{__dir__}/../dlls"
|
12
|
+
elsif RUBY_PLATFORM =~ /darwin/
|
13
|
+
puts "With macOS"
|
14
|
+
else
|
15
|
+
puts "I have no idea what os are you using, so it's possible that stbimage wont't work"
|
16
|
+
end
|
17
|
+
|
18
|
+
elsif RUBY_PLATFORM =~ /arm/
|
19
|
+
|
20
|
+
puts "You have a arm architecture"
|
21
|
+
lib, path = 'libstb_arm.so', "#{__dir__}/../dlls"
|
22
|
+
|
23
|
+
elsif RUBY_PLATFORM =~ /java/
|
24
|
+
|
25
|
+
puts "You have jruby!"
|
26
|
+
|
27
|
+
else
|
28
|
+
|
29
|
+
puts "You have a 64-bit Architecture ruby"
|
30
|
+
if RUBY_PLATFORM =~ /mswin/ || RUBY_PLATFORM =~ /mingw/
|
31
|
+
puts "With Windows"
|
32
|
+
lib, path = 'stbDLL_x64.dll', "#{__dir__}/../dlls"
|
33
|
+
elsif RUBY_PLATFORM =~ /linux/ || RUBY_PLATFORM =~ /cygwin/
|
34
|
+
puts "With Linux"
|
35
|
+
lib, path = 'libstb_x64.so', "#{__dir__}/../dlls"
|
36
|
+
elsif RUBY_PLATFORM =~ /darwin/
|
37
|
+
puts "With macOS"
|
38
|
+
else
|
39
|
+
puts "I have no idea what os are you using, so it's possible that stbimage wont't work"
|
40
|
+
end
|
41
|
+
|
42
|
+
end
|
43
|
+
|
44
|
+
|
45
|
+
# if RUBY_PLATFORM == "x64-mswin64_140" || RUBY_PLATFORM == "x64-mingw32"
|
46
|
+
# lib, path = 'stbDLL_x64.dll', "#{__dir__}/../dlls"
|
47
|
+
# elsif RUBY_PLATFORM == "x86-mingw32"
|
48
|
+
# lib, path = 'stbDLL_x86.dll', "#{__dir__}/../dlls"
|
49
|
+
# elsif RUBY_PLATFORM =~ /x86_linux/
|
50
|
+
# lib, path = 'libstd_x86.so', "#{__dir__}/../dlls"
|
51
|
+
# else
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stbimage
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samuel Keresztes
|
@@ -12,9 +12,9 @@ date: 2021-01-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
13
13
|
description: "!Beta Version! A practical image importer/loader. It wraps stb_image.h
|
14
14
|
(ver:2.26 -2020.07.13-). Supported image formats are: JPEG, PNG, TGA, BMP, PSD,
|
15
|
-
GIF(not animation), HDR, PIC, PNM. Only works well with windows
|
16
|
-
|
17
|
-
usage and other information)"
|
15
|
+
GIF(not animation), HDR, PIC, PNM. Only works well with windows (win32/win64) and
|
16
|
+
with linux so far, but for macOS, users have to include . Checkout the Homepage
|
17
|
+
for more info (installation, usage and other information)"
|
18
18
|
email: ''
|
19
19
|
executables: []
|
20
20
|
extensions: []
|
@@ -24,6 +24,7 @@ files:
|
|
24
24
|
- dlls/stbDLL_x64.dll
|
25
25
|
- dlls/stbDLL_x86.dll
|
26
26
|
- lib/stbimage.rb
|
27
|
+
- utils/system_check.rb
|
27
28
|
homepage: https://github.com/fellowchap-samuel/stbimage-ruby
|
28
29
|
licenses:
|
29
30
|
- MIT
|