quirc-rb 0.1.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 +7 -0
- data/.gitignore +13 -0
- data/Gemfile +12 -0
- data/Gemfile.lock +32 -0
- data/LICENSE.txt +21 -0
- data/README.md +44 -0
- data/Rakefile +32 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/ext/quirc/extconf.rb +28 -0
- data/ext/quirc/quirc.c +146 -0
- data/ext/src/Makefile +103 -0
- data/ext/src/lib/decode.c +945 -0
- data/ext/src/lib/identify.c +1139 -0
- data/ext/src/lib/quirc.c +165 -0
- data/ext/src/lib/quirc.h +178 -0
- data/ext/src/lib/quirc_internal.h +129 -0
- data/ext/src/lib/version_db.c +421 -0
- data/lib/quirc.rb +33 -0
- data/lib/quirc/ext/string_camelize.rb +13 -0
- data/lib/quirc/image_processor.rb +25 -0
- data/lib/quirc/image_processor/mini_magick.rb +43 -0
- data/lib/quirc/image_processor/vips.rb +50 -0
- data/lib/quirc/version.rb +5 -0
- data/quirc.gemspec +32 -0
- metadata +90 -0
@@ -0,0 +1,25 @@
|
|
1
|
+
require "tempfile"
|
2
|
+
|
3
|
+
module Quirc
|
4
|
+
class ImageProcessor
|
5
|
+
attr_reader :pathname
|
6
|
+
|
7
|
+
def initialize(path)
|
8
|
+
@pathname = Pathname.new(path)
|
9
|
+
end
|
10
|
+
|
11
|
+
def to_grayscale(*)
|
12
|
+
raise NotImplementedError
|
13
|
+
end
|
14
|
+
|
15
|
+
private
|
16
|
+
def with_tempfile(name = nil)
|
17
|
+
file = Tempfile.open(["quirc-", name])
|
18
|
+
begin
|
19
|
+
yield file
|
20
|
+
ensure
|
21
|
+
file && file.close!
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
require "image_processing/mini_magick"
|
2
|
+
|
3
|
+
module Quirc
|
4
|
+
class ImageProcessor::MiniMagick < ImageProcessor
|
5
|
+
def to_grayscale(*args)
|
6
|
+
read_image do |image|
|
7
|
+
with_tempfile("-grayscale-8bit.tiff") do |tempfile|
|
8
|
+
options = args.last.is_a?(Hash) ? args.pop : {}
|
9
|
+
width, height = args
|
10
|
+
width ||= options.delete(:width) || image.width
|
11
|
+
height ||= options.delete(:height) || image.height
|
12
|
+
|
13
|
+
pipeline = ImageProcessing::MiniMagick.source(image)
|
14
|
+
if width != image.width || height != image.height
|
15
|
+
pipeline = pipeline.resize_to_fit(width, height, **options)
|
16
|
+
end
|
17
|
+
pipeline = pipeline.depth(8)
|
18
|
+
pipeline = pipeline.colorspace("Gray")
|
19
|
+
pipeline = pipeline.alpha("remove")
|
20
|
+
pipeline = pipeline.convert("tiff")
|
21
|
+
pipeline.call(destination: tempfile.path)
|
22
|
+
processed = ::MiniMagick::Image.new(tempfile.path)
|
23
|
+
|
24
|
+
tempfile.rewind
|
25
|
+
yield tempfile.read, processed.width, processed.height
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
private
|
31
|
+
def read_image
|
32
|
+
require "mini_magick"
|
33
|
+
|
34
|
+
image = ::MiniMagick::Image.new(pathname)
|
35
|
+
if image.valid?
|
36
|
+
yield image
|
37
|
+
end
|
38
|
+
rescue LoadError => e
|
39
|
+
$stderr.puts "You don't have mini_magick installed in your application. Please add it to your Gemfile and run bundle install"
|
40
|
+
raise e
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
require "image_processing/vips"
|
2
|
+
|
3
|
+
module Quirc
|
4
|
+
class ImageProcessor::Vips < ImageProcessor
|
5
|
+
def to_grayscale(*args)
|
6
|
+
read_image do |image|
|
7
|
+
with_tempfile("-grayscale-8bit.tiff") do |tempfile|
|
8
|
+
options = args.last.is_a?(Hash) ? args.pop : {}
|
9
|
+
width, height = args
|
10
|
+
width ||= options.delete(:width) || image.width
|
11
|
+
height ||= options.delete(:height) || image.height
|
12
|
+
pipeline = ImageProcessing::Vips.source(image)
|
13
|
+
if width != image.width || height != image.height
|
14
|
+
pipeline = pipeline.resize_to_fit(width, height, **options)
|
15
|
+
end
|
16
|
+
pipeline = pipeline.colourspace("b_w")
|
17
|
+
pipeline = pipeline.flatten
|
18
|
+
pipeline = pipeline.convert("tiff")
|
19
|
+
image = pipeline.call(save: false)
|
20
|
+
pipeline.call(destination: tempfile.path)
|
21
|
+
tempfile.rewind
|
22
|
+
yield tempfile.read, image.width, image.height
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
private
|
28
|
+
def read_image
|
29
|
+
require "ruby-vips"
|
30
|
+
|
31
|
+
image = ::Vips::Image.new_from_file(pathname.to_s)
|
32
|
+
|
33
|
+
if valid_image?(image)
|
34
|
+
yield image
|
35
|
+
end
|
36
|
+
rescue LoadError => e
|
37
|
+
$stderr.puts "You don't have ruby-vips installed in your application. Please add it to your Gemfile and run bundle install"
|
38
|
+
raise e
|
39
|
+
ensure
|
40
|
+
image = nil
|
41
|
+
end
|
42
|
+
|
43
|
+
def valid_image?(image)
|
44
|
+
image.avg
|
45
|
+
true
|
46
|
+
rescue ::Vips::Error
|
47
|
+
false
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
data/quirc.gemspec
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
require_relative "lib/quirc/version"
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = "quirc-rb"
|
5
|
+
spec.version = Quirc::VERSION
|
6
|
+
spec.authors = ["songji"]
|
7
|
+
spec.email = ["lekyzsj@gmail.com"]
|
8
|
+
|
9
|
+
spec.summary = "QRcode decoder based on quirc"
|
10
|
+
spec.description = "QRcode decoder based on quirc"
|
11
|
+
spec.homepage = "https://github.com/songjiz/quirc-rb"
|
12
|
+
spec.license = "MIT"
|
13
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
|
14
|
+
|
15
|
+
spec.metadata = {
|
16
|
+
"homepage_uri" => spec.homepage,
|
17
|
+
"source_code_uri" => spec.homepage
|
18
|
+
}
|
19
|
+
|
20
|
+
# Specify which files should be added to the gem when it is released.
|
21
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
22
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
23
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
|
24
|
+
end
|
25
|
+
|
26
|
+
spec.bindir = "exe"
|
27
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
28
|
+
spec.require_paths = ["lib"]
|
29
|
+
spec.extensions = ["ext/quirc/extconf.rb"]
|
30
|
+
|
31
|
+
spec.add_dependency "image_processing", "~> 1.12", ">= 1.12.1"
|
32
|
+
end
|
metadata
ADDED
@@ -0,0 +1,90 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: quirc-rb
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- songji
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-08-13 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: image_processing
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.12'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 1.12.1
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.12'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 1.12.1
|
33
|
+
description: QRcode decoder based on quirc
|
34
|
+
email:
|
35
|
+
- lekyzsj@gmail.com
|
36
|
+
executables: []
|
37
|
+
extensions:
|
38
|
+
- ext/quirc/extconf.rb
|
39
|
+
extra_rdoc_files: []
|
40
|
+
files:
|
41
|
+
- ".gitignore"
|
42
|
+
- Gemfile
|
43
|
+
- Gemfile.lock
|
44
|
+
- LICENSE.txt
|
45
|
+
- README.md
|
46
|
+
- Rakefile
|
47
|
+
- bin/console
|
48
|
+
- bin/setup
|
49
|
+
- ext/quirc/extconf.rb
|
50
|
+
- ext/quirc/quirc.c
|
51
|
+
- ext/src/Makefile
|
52
|
+
- ext/src/lib/decode.c
|
53
|
+
- ext/src/lib/identify.c
|
54
|
+
- ext/src/lib/quirc.c
|
55
|
+
- ext/src/lib/quirc.h
|
56
|
+
- ext/src/lib/quirc_internal.h
|
57
|
+
- ext/src/lib/version_db.c
|
58
|
+
- lib/quirc.rb
|
59
|
+
- lib/quirc/ext/string_camelize.rb
|
60
|
+
- lib/quirc/image_processor.rb
|
61
|
+
- lib/quirc/image_processor/mini_magick.rb
|
62
|
+
- lib/quirc/image_processor/vips.rb
|
63
|
+
- lib/quirc/version.rb
|
64
|
+
- quirc.gemspec
|
65
|
+
homepage: https://github.com/songjiz/quirc-rb
|
66
|
+
licenses:
|
67
|
+
- MIT
|
68
|
+
metadata:
|
69
|
+
homepage_uri: https://github.com/songjiz/quirc-rb
|
70
|
+
source_code_uri: https://github.com/songjiz/quirc-rb
|
71
|
+
post_install_message:
|
72
|
+
rdoc_options: []
|
73
|
+
require_paths:
|
74
|
+
- lib
|
75
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
76
|
+
requirements:
|
77
|
+
- - ">="
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: 2.4.0
|
80
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - ">="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '0'
|
85
|
+
requirements: []
|
86
|
+
rubygems_version: 3.2.22
|
87
|
+
signing_key:
|
88
|
+
specification_version: 4
|
89
|
+
summary: QRcode decoder based on quirc
|
90
|
+
test_files: []
|