rucaptcha 3.0.2-x86_64-darwin → 3.1.0-x86_64-darwin

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 518517dab0fefc07864f9656ed00b272432cb47594c7d8bbca11ad37cee6ed8b
4
- data.tar.gz: 8b777e3466b8bb2a506c183097b304f3af06aea93ba898d886fc74dbd9d1bd2c
3
+ metadata.gz: 3ae985016346ddc4b9fd5cf6b4a3e9ed5c6ac79e7b3d4e09c4c69cf93db755ba
4
+ data.tar.gz: 28cbb5c020d9da5bbc8fdf1f06ea63e0be69acf38dc898458a44de7d8f0a40d0
5
5
  SHA512:
6
- metadata.gz: 0706046757b260991cbef21ec11b970cab9028d111bc7a035791dff02ecb9bf8a477bdd842911082f1261a5c598de53cedf143e231be203d2771808f7581dfc6
7
- data.tar.gz: 1a2f18641cae5a540c62afff4d9e68193f723478f9e353de5d8b539399bdcaf42de5b05a7814c009be7a93e8be2bbc83a3e4809830815d69368f58b406ac1aa4
6
+ metadata.gz: 81387989dd00779986cb99da85336c4323f943dd849c1e75d59fb17b170d8edcd7c590dd28163b795757afe9dd47bdca4e2a928547631b09b117d0d2c1bb94c0
7
+ data.tar.gz: 1593552cfe29594c85ccefde8362a7b33516cdb53184f754c6b3ce4bf01c81516d8c54add6db468b2c7a68c699edfd3ecf37b315eda6c1962ad66c00942542a1
data/README.md CHANGED
@@ -162,3 +162,14 @@ else
162
162
  render :new
163
163
  end
164
164
  ```
165
+
166
+ ## Performance
167
+
168
+ `rake benchmark` to run benchmark test.
169
+
170
+ ```
171
+ Warming up --------------------------------------
172
+ Generate image 51.000 i/100ms
173
+ Calculating -------------------------------------
174
+ Generate image 526.350 (± 2.5%) i/s - 2.652k in 5.041681s
175
+ ```
data/Rakefile CHANGED
@@ -32,3 +32,34 @@ task :preview do
32
32
  warn "-------------------------\n#{res[0]}"
33
33
  puts res[1].pack("c*")
34
34
  end
35
+
36
+ task :memory do
37
+ require "rucaptcha"
38
+ require "memory_profiler"
39
+
40
+ RuCaptchaCore.create(5, 5)
41
+
42
+ report = MemoryProfiler.report do
43
+ 1000.times do
44
+ RuCaptchaCore.create(5, 5)
45
+ end
46
+ end
47
+
48
+ GC.start
49
+ report.pretty_print
50
+
51
+ puts "------------------------- Result Guide -------------------------"
52
+ puts "If [Total retained] have any bytes, there will have memory leak."
53
+ end
54
+
55
+ task :benchmark do
56
+ require "rucaptcha"
57
+ require "benchmark/ips"
58
+
59
+ RuCaptchaCore.create(5, 5)
60
+
61
+ Benchmark.ips do |x|
62
+ x.report("Generate image") { RuCaptchaCore.create(5, 5) }
63
+ x.compare!
64
+ end
65
+ end
@@ -7,7 +7,7 @@ module RuCaptcha
7
7
  headers["Pragma"] = "no-cache"
8
8
  data = generate_rucaptcha
9
9
 
10
- opts = { disposition: "inline", type: "image/png" }
10
+ opts = { disposition: "inline", type: "image/jpeg" }
11
11
  send_data data, opts
12
12
  end
13
13
  end
@@ -1,6 +1,6 @@
1
1
  use image::{ImageBuffer, Rgb};
2
2
  use imageproc::drawing::{draw_cubic_bezier_curve_mut, draw_text_mut};
3
- use imageproc::noise::{gaussian_noise_mut, salt_and_pepper_noise_mut};
3
+ use imageproc::noise::gaussian_noise_mut;
4
4
  use rand::{thread_rng, Rng};
5
5
  use rusttype::{Font, Scale};
6
6
  use std::io::Cursor;
@@ -195,8 +195,8 @@ impl CaptchaBuilder {
195
195
  pub fn new() -> Self {
196
196
  CaptchaBuilder {
197
197
  length: 4,
198
- width: 300,
199
- height: 100,
198
+ width: 220,
199
+ height: 70,
200
200
  complexity: 5,
201
201
  }
202
202
  }
@@ -247,15 +247,9 @@ impl CaptchaBuilder {
247
247
  ((5 * self.complexity) - 5) as u64,
248
248
  );
249
249
 
250
- salt_and_pepper_noise_mut(
251
- &mut image,
252
- ((0.001 * self.complexity as f64) - 0.001) as f64,
253
- (0.8 * self.complexity as f64) as u64,
254
- );
255
-
256
250
  let mut bytes: Vec<u8> = Vec::new();
257
251
  image
258
- .write_to(&mut Cursor::new(&mut bytes), image::ImageFormat::Png)
252
+ .write_to(&mut Cursor::new(&mut bytes), image::ImageFormat::Jpeg)
259
253
  .unwrap();
260
254
 
261
255
  Captcha { text, image: bytes }
Binary file
Binary file
Binary file
@@ -1,3 +1,3 @@
1
1
  module RuCaptcha
2
- VERSION = "3.0.2"
2
+ VERSION = "3.1.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rucaptcha
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.2
4
+ version: 3.1.0
5
5
  platform: x86_64-darwin
6
6
  authors:
7
7
  - Jason Lee
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-18 00:00:00.000000000 Z
11
+ date: 2022-11-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties