rmagick 2.15.0 → 2.15.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of rmagick might be problematic. Click here for more details.

@@ -87,7 +87,7 @@ class Magick_UT < Test::Unit::TestCase
87
87
  assert_instance_of(String, f.foundry) unless f.foundry.nil?
88
88
  assert_instance_of(String, f.format) unless f.format.nil?
89
89
  end
90
- Magick.fonts {|f| assert_instance_of(Magick::Font, f) }
90
+ Magick.fonts {|f| assert_instance_of(Magick::Font, f) }
91
91
  end
92
92
 
93
93
  def test_formats
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rmagick
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.15.0
4
+ version: 2.15.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Hunter
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2015-04-28 00:00:00.000000000 Z
14
+ date: 2015-05-30 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rake-compiler
@@ -68,9 +68,9 @@ files:
68
68
  - ".rubocop.yml"
69
69
  - ".simplecov"
70
70
  - ".travis.yml"
71
+ - CHANGELOG.md
71
72
  - CODE_OF_CONDUCT.md
72
73
  - CONTRIBUTING.md
73
- - ChangeLog
74
74
  - Doxyfile
75
75
  - Gemfile
76
76
  - LICENSE
@@ -426,6 +426,7 @@ files:
426
426
  - lib/rvg/transformable.rb
427
427
  - lib/rvg/units.rb
428
428
  - rmagick.gemspec
429
+ - spec/rmagick/ImageList1_spec.rb
429
430
  - spec/rmagick/draw_spec.rb
430
431
  - spec/spec_helper.rb
431
432
  - test/Image1.rb
@@ -466,11 +467,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
466
467
  requirements:
467
468
  - ImageMagick 6.4.9 or later
468
469
  rubyforge_project: rmagick
469
- rubygems_version: 2.4.5
470
+ rubygems_version: 2.4.7
470
471
  signing_key:
471
472
  specification_version: 4
472
473
  summary: Ruby binding to ImageMagick
473
474
  test_files:
475
+ - spec/rmagick/ImageList1_spec.rb
474
476
  - spec/rmagick/draw_spec.rb
475
477
  - spec/spec_helper.rb
476
478
  - test/Image1.rb
data/ChangeLog DELETED
@@ -1,833 +0,0 @@
1
- RMagick 2.15.0
2
- o Ability to remove alpha channel - @ollie
3
- o C local variables guarded against GC to avoid segfaults - @u338steven
4
- o trace_proc protected with a mutex to avoid segfaults - @u338steven
5
-
6
- RMagick 2.14.0
7
- o RMagick.rb moved to deprecated directory - @mockdeep
8
- o Better ImageMagick feature detection - @bf4
9
- o Prevent compilation failures if prefix is an empty string - @voxik
10
- o SplineInterpolatePixel preprocessor check removed - @joshk
11
- o Make error format a string literal - @mtasaka
12
- o Automatically set ARCHFLAGS on OS X - @u338steven
13
- o Fixed 'rmagick/version' require failure - @u338steven
14
- o Fixed escaping of '%' in Draw#get_type_metrics - @mkluczny
15
- o Silence warnings on Ruby 2.2 when comparing Enums - @meanphil
16
- o Multiple test suite improvements - @mockdeep, @bf4
17
- o Ruby source code formatting with RuboCop - @vassilevsky
18
-
19
- RMagick 2.13.4
20
- #129 from @theschoolmaster
21
- proof of concept for using pkg-config in place of Magick-config on debian based systems
22
-
23
- #127 from @u338steven
24
- Changed Image#resample to calling ResampleImage (related #29, #45)
25
-
26
- #124 from @u338steven
27
- Fixed #122: lib/RMagick.rb is overwritten by lib/rmagick.rb on case-insensitive systems
28
-
29
- #123 from @prijutme4ty
30
- New class SolidFill in order to fill image with monochromatic background
31
-
32
- #121 from @markotom
33
- Quotes for correct path of font file
34
-
35
- #120 from @chulkilee
36
- Allow MagickCore6 from Magick-config
37
-
38
- #112 from @u338steven/
39
- Fixed: build error with ImageMagick 6.8.9 (when deprecated functions are excluded)
40
-
41
- #102 from @u338steven
42
- Fixed: related x_resolution, y_resolution
43
-
44
- from @u338steven
45
- Lots of test fixes
46
-
47
- #95 from @ioquatix
48
- Fix pixel hash test
49
-
50
- #94 from @u338steven
51
- Fixed: build error on Windows Ruby x64 (with ImageMagick 6.8.0-10 or Ima...
52
-
53
- #91 from @vassilevsky
54
- Do not test machine and OS-specific integers
55
- Fix initial memory limit test
56
-
57
- RMagick 2.13.3
58
- #90 from @bricef
59
- Fix installation error on systems with HRDI enabled RMagick
60
-
61
- RMagick 2.13.2
62
- o Fixed issues preventing RMagick from working with version 6.8 or higher
63
- o Fixed issues preventing RMagick from working with ruby 1.9.3
64
-
65
- RMagick 2.13.1
66
- o Fixed bug preventing RMagick from working with version 6.5.9 or higher
67
-
68
- RMagick 2.13.0
69
- o Added Doxygen documentation, for automatic documentation
70
- o Fixed bug #27467, get RMagick to compile witH ImageMagick 6.5.7
71
- o Fixed bug #27607, switch Pixel#from_hsla and Pixel#to_hsla to use ranges
72
- 0-255 instead of 0-100 for saturation and lightness (range used by
73
- ImageMagick 6.5.6-5 and higher). Also added ability to specify all
74
- arguments to these functions as percentages (bug report by Arthur Chan).
75
-
76
-
77
- RMagick 2.12.2
78
- o Add feature tests for SinusoidFunction and PolynomialFunction enum
79
- values to allow compiling with ImageMagick 6.4.8-7 (bug report by Mark
80
- Richman)
81
-
82
- RMagick 2.12.1
83
- o Fix bug #27239, allow 2.12.0 to compile with older releases of ImageMagick
84
- (bug report by Sam Lown)
85
-
86
- RMagick 2.12.0
87
- o Added Image#function_channel (available in ImageMagick 6.4.8-8)
88
- o Added Image#auto_level_channel, Image#auto_gamma_channel (available in
89
- ImageMagick 6.5.5-1)
90
- o Added Draw#interline_spacing, #interline_spacing= (available in
91
- ImageMagick 6.5.5-8)
92
-
93
- RMagick 2.11.1
94
- o Applied Alexey Borzenkov's mingw patches to extconf.rb.
95
- o Fixed a bug in Magick.trace_proc that could cause a segv at program exit
96
- with Ruby 1.9.1 (bug report by Larry Young)
97
- o Added new CompressionType enum values ZipSCompression, PixCompression,
98
- Pxr24Compression, B44Compression, B44ACompression (available in
99
- ImageMagick 6.5.5-4)
100
-
101
- RMagick 2.11.0
102
- o Fix bug #26475, dissolve and watermark don't work with new versions of
103
- ImageMagick (reported by Jim Crate)
104
- o Add Image#composite_mathematics (available in ImageMagick 6.5.4-3)
105
- o Add new LinearDodgeCompositeOp, LinearBurnCompositeOp,
106
- PegtopCompositeOp, PinLightCompositeOp, VividLightCompositeOp enum values
107
- (available in ImageMagick 6.5.4-3)
108
-
109
- RMagick 2.10.0
110
- o ImageMagick releases earlier than 6.3.5-10 and Ruby releases earlier
111
- than 1.8.5 no longer supported.
112
- o (Experimental) Support the use of Ruby managed memory for all memory
113
- allocations (available in ImageMagick 6.5.3-10)
114
- o Add Image#selective_blur_channel (available in ImageMagick 6.5.0-3)
115
- o Add new AlphaBackgroundChannel enum value (available in ImageMagick
116
- 6.5.2-5)
117
- o Add new DistortCompositeOp enum value (available in ImageMagick 6.5.3-7)
118
-
119
- RMagick 2.9.2
120
- o Add new HorizontalTileEdgeVirtualPixelMethod,
121
- VerticalTileEdgeVirtualPixelMethod, CheckerTileVirtualPixelMethod
122
- VirtualPixelMethod enum values (available in ImageMagick 6.5.0-1)
123
- o Added BilinearForwardDistortion, BilinearReverseDistortion enums
124
- (available in ImageMagick 6.5.1-2)
125
- o Add missing composite operators to Magick::Draw#composite method
126
- o Add warning about dropping support for ImageMagick < 6.3.5 and
127
- Ruby < 1.8.5
128
- o Fix bug #25892, stack buffer overflow in Magick::TypeMetric.to_s
129
- (reported by Roman Simecek)
130
-
131
- RMagick 2.9.1
132
- o Fix a bug that prevents the use of transparent background colors when
133
- built with ImageMagick 6.4.9-0
134
-
135
- RMagick 2.9.0
136
- o Fix #23209, improve RVG's letter spacing (patch from Jonah Fox)
137
- o Add Draw#kerning= attribute (available in ImageMagick 6.4.7-8)
138
- o Add Draw#interword_spacing= attribute (available in ImageMagick
139
- 6.4.8-0)
140
- o Add Draw#kerning, Draw#interword_spacing primitive methods (available in
141
- ImageMagick 6.4.8-3)
142
- o Feature #23171, support ImageList, Draw, Pixel marshaling.
143
- o Support all the new EvaluateOperator constants
144
-
145
- RMagick 2.8.0
146
- o Add the endian, scene, and transparent_color attributes to Image::Info
147
- o Deprecate Image#endian= attribute setter
148
- o Add the transparent_chroma method to the Image class (available in
149
- ImageMagick 6.4.5-6)
150
- o Add the sparse_color method to the Image class (available in ImageMagick
151
- 6.4.3)
152
- o Update Image#change_geometry to work with the new ParseSizeGeometry API
153
- in ImageMagick 6.4.6-9.
154
-
155
- RMagick 2.7.2
156
- o Fix bug #22740, some Image::Info attribute values are not propogated to
157
- the image object (bug report by Thomas Watson)
158
-
159
- RMagick 2.7.1
160
- o Fix bug #22471, Magick::fonts can abend on 64-bit systems (bug report and
161
- patch by James Le Cuirot)
162
- o ImageList.new accepts a block which is passed on to Image::read when
163
- reading the input images. The block is executed in the context of an
164
- Image::Info object.
165
- o Add support for the "user" image property.
166
- o Define the Magick::FatalImageMagickError exception class, raised if
167
- ImageMagick raises a fatal (unrecoverable) exception.
168
- o Added feature #22618, Image#total_ink_density (request by F. Behrens)
169
-
170
- RMagick 2.7.0
171
- o Fix bug #22152, extconf.rb does not respect the LDFLAGS environment
172
- variable (bug report by Joseph Sokol-Margolis)
173
- o Fix bug #22190, the NoDitherMethod enum value is not defined in
174
- ImageMagick 6.4.2
175
- o Add the TrimBoundsLayer ImageLayerMethod enum value (available in
176
- ImageMagick 6.4.3-8)
177
- o Add the CopyAlphaChannel, ExtractAlphaChannel, OpaqueAlphaChannel,
178
- ShapeAlphaChannel, and TransparentAlphaChannel AlphaChannelType enum
179
- values (available in ImageMagick 6.4.3-7)
180
- o Rename Image#affinity and ImageList#affinity to Image#remap and
181
- ImageList#remap. Retain the old names as aliases. (Changed in ImageMagick
182
- 6.4.4-0)
183
-
184
- RMagick 2.6.0
185
- o Fix bug #21237, Image::write ignores format attribute when called with a
186
- Tempfile pathname (bug report by Jack Shedd)
187
- o Fix bug #21897, ImageList#from_blob abends when certain corrupt JPEG
188
- images are used (bug report by Peter Szabo)
189
- o Add Image#composite_tiled, Image#composite_tiled! (ref:
190
- http://rubyforge.org/forum/forum.php?thread_id=27347&forum_id=33)
191
- o Add Image#deskew (available with ImageMagick 6.4.2-5)
192
- o Add Image#define, Image#undefine (available in ImageMagick 6.3.6)
193
- o Add Image#level_colors (available in ImageMagick 6.4.2-1)
194
- o Add Image#levelize_channel (available in ImageMagick 6.4.2-1)
195
- o Add Image#affinity, ImageList#affinity (available in ImageMagick 6.4.3-6).
196
- These methods replace Image#map and ImageList#map.
197
- o Accept DitherMethod values for the dither argument to Image#quantize,
198
- ImageList#quantize
199
- o Add the BarrelDistortion, PolynomialDistortion, ShepardsDistortion,
200
- PolarDistortion, and DePolarDistortion MagickDistortion Method enum values
201
- (available in ImageMagick 6.4.2-6)
202
- o Add the HorizontalTileVirtualPixelMethod and
203
- VerticalTileVirtualPixelMethod VirtualPixelMethod enum values
204
- (available in ImageMagick 6.4.2-6)
205
- o Add DitherMethod enum class
206
- o Added general-purpose OptionalMethodArguments class to handle ad-hoc
207
- optional arguments.
208
- o Support optional "distort:viewport" and "distort:scale" arguments to
209
- Image#distort
210
- o Support optional highlight_color and lowlight_color arguments
211
- to Image#compare_channel
212
-
213
- RMagick 2.5.2
214
- o Add support for MergeLayer to Magick::ImageList#optimize_layers (patch
215
- #21189, submitted by Andrew Watson)
216
- o Add PowQuantumOperator argument for Image#quantum_operator (available
217
- in ImageMagick 6.4.1-9)
218
-
219
- RMagick 2.5.1
220
- o Update Pixel#to_color to work with the new QueryMagickColorname API in
221
- ImageMagick 6.4.1-9.
222
-
223
- RMagick 2.5.0
224
- o Added Image#add_compose_mask, #delete_compose_mask (feature #20531)
225
-
226
- RMagick 2.4.0
227
- o Added Image#image_type= (feature #20490)
228
-
229
- RMagick 2.3.0
230
- o Added Image#encipher, Image#decipher (available with ImageMagick 6.3.8-6)
231
- o Added DTX1Compression, DTX1Compression, and DTX1Compression
232
- CompressionType enums (available in ImageMagick 6.3.9-4)
233
- o Added optional "use hex format" argument to Pixel#to_color
234
- o Support :area resource type in Magick.limit_resource
235
- o Pixel.from_HSL and Pixel#to_HSL are deprecated. Use Pixel.from_hsla
236
- and Pixel#to_hsla instead. The new methods rely on the ImageMagick 6.3.5
237
- and later API.
238
- o The Image#alpha and alpha= attributes are deprecated. Use alpha() and
239
- alpha? instead.
240
- o The Image#mask= attribute is deprecated. Use mask() instead.
241
- o The use of Ruby older than version 1.8.4 with RMagick is deprecated and
242
- will not be supported in a future release.
243
- o Fix bug #18271, rvg width and height attributes wrong after a call to
244
- viewbox (reported by Greg Jarman)
245
-
246
- RMagick 2.2.2
247
- o Fix bug #18016, add test for InitializeMagick in libMagickCore to
248
- extconf.rb
249
-
250
- RMagick 2.2.0
251
- o Added Image#opaque_channel, Image#paint_transparent (available with
252
- ImageMagick 6.3.7-10)
253
- o Added Image#liquid_rescale (available with ImageMagick 6.3.8-2)
254
- o Added CMYColorspace ColorspaceType value
255
- o Fixed bug #17148, compiler error message on Solaris (bug report by Trever
256
- Wennblom)
257
- o Fixed bug #17470, get_exif_by_number, get_exif_by_entry may fail when
258
- called with one or more arguments
259
-
260
- RMagick 2.1.0
261
- o Added Image::Info#caption= attribute
262
- o Rename Image#crop_resized, #crop_resized! to #resize_to_fill,
263
- #resize_to_fill!. Add aliases for the old names.
264
- o Fix bug #16776, in the axes.rb example the last 2 arguments to
265
- border.rectangle are swapped (bug report by Alain Feler)
266
- o Fix bug #16931, apostrophe in #error directive causes error in some
267
- versions of GCC (bug report by Justin Dossey)
268
-
269
- RMagick 2.0.0
270
- o Replaced configure/make/make install with standard Ruby setup.rb,
271
- extconf.rb
272
- o Removed support for Ruby earlier than 1.8.2
273
- o Removed support for GraphicsMagick. As a result these methods are no
274
- longer available: Image#grayscale_pseudo_class, Image#statistics.
275
- o Removed support for all releases of ImageMagick earlier than 6.3.0.
276
- o Removed deprecated Image#random_channel_threshold. Use
277
- Image#random_threshold_channel instead
278
- o Removed deprecated Image#channel_threshold. Use
279
- Image#random_threshold_channel instead
280
- o Removed unecessary Image#montage=
281
- o Removed unecessary and undocumented Image#image_type=
282
- o Removed deprecated Image::Info#tile_info, tile_info= attributes.
283
- o Removed deprecated Image::Info#tile, tile= attributes. Use #extract,
284
- #extract= instead
285
- o Removed deprecated Image::Info#subimage, subimage= attributes. Use
286
- scene, scene= instead
287
- o Removed deprecated Image::Info#subrange, subrange= attributes. Use
288
- number_scenes, number_scenes= instead
289
- o Removed deprecated Magick.set_monitor. Use Image#set_monitor,
290
- Image::Info#set_monitor instead
291
- o Removed deprecated RunlengthEncodedCompression CompressionType. Use
292
- RLECompression instead
293
- o Deprecated Image#matte, matte= with ImageMagick 6.3.5 and later
294
- o Added Image::Info#stroke=, stroke_width= and undercolor= attributes
295
- o Added Image::Info#tile_offset= attribute
296
- o Added Draw#fill_pattern= and #stroke_pattern= annotate attributes
297
- o Changed Image::Info[] and Image::Info[]= to allow an omitted "format"
298
- argument
299
- o Added Image#destroy!, destroyed?, check_destroyed methods
300
- o Support Image object creation/destruction tracing with the
301
- Magick.trace_proc attribute
302
- o Added Magick::QuantumRange. Magick::MaxRGB is deprecated.
303
- o Added OptimizeTransLayer, RemoveDupsLayer, RemoveZeroLayer,
304
- OptimizeImageLayer ImageLayerMethods enum values (available with
305
- ImageMagick 6.3.3),
306
- MosaicLayer, FlattenLayer (available with ImageMagick 6.3.6)
307
- o RMagick works with Q32 version of ImageMagick
308
- o Added ChangeMaskCompositeOp, DivideCompositeOp, LinearLightCompositeOp
309
- CompositeOperator enum values
310
- o Added SplineInterpolatePixel InterpolatePixelMethod enum value
311
- o Added DitherVirtualPixelMethod, RandomVirtualPixelMethod,
312
- BlackVirtualPixelMethod, GrayVirtualPixelMethod, WhiteVirtualPixelMethod
313
- (available with ImageMagick 6.3.5), and MaskVirtualPixelMethod (available
314
- with ImageMagick 6.3.3) VirtualPixelMethod enum values
315
- o Added GIFInterlace, JPEGInterlace, PNGInterlace Interlace type enum
316
- values (available with ImageMagick 6.3.4)
317
- o Added SentinelFilter FilterTypes enum value (available in ImageMagick
318
- 6.3.6)
319
- o Added Image.combine
320
- o Added Image#separate (available with ImageMagick 6.3.2)
321
- o Added Image#distort (available with ImageMagick 6.3.5)
322
- o Added Image#each_pixel (thanks to Russell Norris for the suggestion and
323
- code)
324
- o Added Image#histogram? (available with ImageMagick 6.3.5)
325
- o Added Image#sync_profiles (available with ImageMagick 6.3.2)
326
- o Added Image#extent (available with ImageMagick 6.3.1)
327
- o Added Image#excerpt, Image#excerpt! (available with ImageMagick 6.3.5)
328
- o Added Image::Info#attenuate
329
- o Added Image#clut_channel (available with ImageMagick 6.3.5)
330
- o Feature Request #16264, added ImageList#composite_layers (available with
331
- ImageMagick 6.3.3, request from Steve Martocci)
332
- o Added Image#alpha= (available with ImageMagick 6.3.5)
333
- o Added Image#gravity=
334
- o Added Image#equalize_channel (available with ImageMagick 6.3.6)
335
- o Added new FilterTypes values KaiserFilter, WelshFilter, ParzenFilter,
336
- LagrangeFilter, BohmanFilter, BartlettFilter (available with ImageMagick
337
- 6.3.6)
338
- o Fix bug #10339, Image#trim does not support "reset page information
339
- option" (bug report from Nobody)
340
- o Renamed RMagick.so to RMagick2.so to prevent confusion between RMagick.rb
341
- and RMagick.so
342
- o Feature Request #16276, re-organize doc to not split Image method pages
343
- in the middle of an initial letter (request from Roy Leban)
344
- o Updated for ImageMagick 6.3.7-5
345
- o Made changes as necessary to work with current Ruby 1.9.0
346
-
347
- RMagick 1.15.12
348
- o Fix bug #16221, starting with ImageMagick 6.3.2, get_exif_by_entry/number
349
- returns empty array/hash when no arguments are specified, even though the
350
- image has EXIF data (bug report from Paul Clegg)
351
-
352
- RMagick 1.15.11
353
- o Fix bug #15887, the x_ and y_resolution attributes don't respect the units
354
- attribute (bug report from Ben Greenburg)
355
- o Fix bug #15889, memory leak in Draw#composite method (bug report from Till
356
- Vollmer)
357
-
358
- RMagick 1.15.10
359
- o Update Magick::Pixel.from_HSL, #to_HSL to work with new APIs in
360
- ImageMagick 6.3.5-9.
361
-
362
- RMagick 1.15.9
363
- o Fixed bug #12089 (bug report from Hans de Graaff)
364
-
365
- RMagick 1.15.8
366
- o Fixed bug #12671, incorrect link in HTML doc (bug report from Thomas R.
367
- Koll
368
- o Fixed bug #11890, incorrect usage description for Draw#text_undercolor in
369
- HTML doc (bug report from Ezra Freedman)
370
- o Fixed bug #12706, specifying both a gravity and offsets to Image#composite
371
- positions the composite image incorrectly (bug report from Benoit Larroque)
372
-
373
- RMagick 1.15.7
374
- o Fix bug #11033, make distclean misses some files (bug report from Lucas
375
- Nussbaum)
376
- o Work around SetMagickRegistry problem in ImageMagick 6.3.4-7
377
-
378
- RMagick 1.15.6
379
- o Fix bug #10070, memory leak in Draw#get_type_metrics,
380
- Draw#get_multiline_type_metrics, Draw#annotate (bug report from Sinclair
381
- Bain)
382
- o Fix bug #10080, scripts in examples directory should not be marked
383
- executable (bug report from Lucas Nussbaum)
384
-
385
- RMagick 1.15.5
386
- o Fix bug #9637, export_pixels always exports all 0's for 1-bit images (bug
387
- report from Doug Patterson)
388
-
389
- RMagick 1.15.4
390
- o Fix bug #8927, RMagick and rbgsl both export the name ID_call (bug report
391
- from Shin Enomoto)
392
-
393
- RMagick 1.15.3
394
- o Fix bug #8697, Image::Info.fill= doesn't work when creating "caption:"
395
- format images (bug report from choonkeat)
396
-
397
- RMagick 1.15.2
398
- o Fix bug #8408, a compatibility problem with some versions of ImageMagick
399
- before 6.2.5 (bug report from Geir Gluckstad)
400
-
401
- RMagick 1.15.1
402
- o Fix bug #8307, compatibility problems with older (6.0.x) versions of
403
- ImageMagick (bug report from Chris Taggart)
404
-
405
- RMagick 1.15.0
406
- o Added fx method to ImageList class
407
- o Added wet_floor method to the Image class
408
- o Added linear_stretch method to the Image class (available with
409
- ImageMagick 6.3.1-1)
410
- o Added recolor method to the Image class (available with ImageMagick 6.3.1-3)
411
- o Added polaroid method to the Image class (available with ImageMagick 6.3.1-6)
412
- o Added origin attribute to the Image::Info class (supported by
413
- ImageMagick 6.3.1-4 and later)
414
- o Added PaletteBilevelMatteType to the ImageType enum
415
- o Fix bug #6260, some RVG examples produce all-black GIF images
416
- o Fix bug #7034, fix the matte method in the Draw class
417
- o Fix bug #7373, default channels should be RGB instead of RGBA
418
- o Fix bug #7716, Pixel#intensity wrong for gray images (bug report from
419
- Morio Miki)
420
- o Fix bug #7949, Magick::Draw.new abends when an exception occurs before
421
- the draw object is fully initialized (bug report from Andrew Kaspick)
422
- o Fix bug #8015, Magick::Draw.new doesn't call the optional arguments block
423
- in the right scope (bug report from Andrew Kaspick)
424
- o Tested with ImageMagick 6.3.2-0
425
-
426
- RMagick 1.14.1
427
- o Handle change to the type of the ColorInfo.color field introduced by
428
- ImageMagick 6.3.0
429
-
430
- RMagick 1.14.0
431
- o Feature request #5015, support CMYK->RGB conversions. Added the
432
- add_profile and delete_profiles to the Image class. Fixed the profile!,
433
- iptc_profile, and color_profile methods. Added the
434
- black_point_compensation attribute. (requested by Niklas Ekman)
435
- o Added adaptive_blur, adaptive_blur_channel, find_similar_region, sketch
436
- methods to the Image class (available with ImageMagick 6.2.8-6)
437
- o Added adaptive_resize to the Image class (available with
438
- ImageMagick 6.2.9)
439
- o Added resample method to the Image class (thanks to Ant Peacocke for the
440
- idea)
441
- o Added four new compositing methods to the Image class: blend, displace,
442
- dissolve, and watermark
443
- o Feature request #5418, add get_iptc_dataset and each_iptc_dataset to the
444
- Image class (requested by Oliver Andrich)
445
- o Added the bias and mask attributes to the Image class
446
- o Added optional qualifier argument to Image#rotate
447
- o Patch #5742 from Douglas Sellers, adds channel method to the Image::Info
448
- class.
449
- o Added new ChannelType enum values
450
- o Added texture= attribute writer to the Image::Info class
451
- o Added tile= attribute writer to the Draw class
452
- o Added pixel_interpolation_method attribute, InterpolatePixelMethod enum
453
- class to the Image class (available with ImageMagick 6.2.9)
454
- o Added "Magick Command Options and Their Equivalent Methods" page to the
455
- documentation
456
- o Fix bug #5079, Image#quantum_operator method doesn't work (bug report
457
- from Pedro Martins)
458
- o Fix bug #5080, incorrect RVG images when non-0 values used for the min_x
459
- or min_y arguments to RVG#viewbox (bug report from Daniel Harple)
460
- o Fix bug #5370, the clip_mask= attribute doesn't work
461
- o Fix bug #5506, wrong argument used to intialize AffineMatrix (bug
462
- report from Michael Shantzis)
463
-
464
- RMagick 1.13.0
465
- o Added transform, transform!, transpose, transpose! methods to Image class
466
- (available with ImageMagick 6.2.8)
467
- o Feature #4844, add auto_orient, auto_orient! methods to Image class
468
- (suggestion from John Oordopjes, available with ImageMagick 6.2.8)
469
- o Added adaptive_sharpen, adaptive_sharpen_channel methods to Image class
470
- (available with ImageMagick 6.2.7)
471
- o Added composite_image_channel, composite_image_channel! methods to Image
472
- class (added in ImageMagick 6.2.6)
473
- o Added radial_blur_channel method to Image class (available in
474
- ImageMagick 6.2.4)
475
- o Fix bug #4806, add hash, eql? methods to Pixel class (bug report from
476
- Tim Pease)
477
- o Change extension filename to match RubyGems 0.9.0 expectations.
478
- o Fix bug #4821, correct doc for Image#rotate (bug report from Tim Pease)
479
- o Update the Draw#annotate documentation
480
-
481
- RMagick 1.12.0
482
- o Fix bug #4630, the new signature for #level is incompatible with
483
- releases prior to 1.10.1 (bug report from Al Evans)
484
-
485
- RMagick 1.11.1
486
- o Fix bug #4511, add Makefile, rmagick_config.h as dependencies
487
- in the Makefile (bug report from Eric Hodel)
488
- o Ensure ExceptionInfo structures are freed
489
-
490
- RMagick 1.11.0
491
- o Feature #3705, add resize_to_fit (thanks to Robert Manni for the code)
492
- o Added optimize_layers method to the ImageList class (available with
493
- ImageMagick 6.2.6)
494
- o Added limit_resource method to the Magick module
495
- o Replaced install.rb with setup.rb, improved gem install
496
- (bug report from Ryan Davis)
497
- o Added --disable-htmldoc option to setup.rb
498
- o Fix bug #4104, incorrect label on example (reported by Jason Lee)
499
- o Added contrast_stretch_channel to the Image class (available with
500
- ImageMagick 6.2.6)
501
- o Improved Magick exception handling to eliminate memory leaks when an exception
502
- is rescued and execution continues.
503
- o Tested with ImageMagick 6.2.7
504
-
505
- RMagick 1.10.1
506
- o Fix bug #3437, memory leak in ImageList#to_blob
507
- o Fix bug #3363, Image#composite doesn't work when the source image
508
- is bigger than the destination
509
- o Fix bug #3635, Image#import_pixels doesn't accept FloatPixel or DoublePixel
510
- storage types
511
- o Feature #3597, add border_color attribute to the Draw class
512
-
513
- RMagick 1.10.0
514
- o Added add_noise_channel method to Image class (available with ImageMagick 6.2.5)
515
- o Added vignette method to the Image class (available with ImageMagick 6.2.6)
516
- o Added crop_resize method to the Image class (thanks to Jerret Taylor for
517
- the suggestion and original code)
518
- o Added export_pixels_to_str method to the Image class
519
- o Provided default arguments to Image#export_pixels
520
- o Added "order" option to Image#ordered_dither
521
- o Added cyan, magenta, yellow, and black attribute accessors to the Pixel class
522
- o Added CineonLogRGBColorspace, LABColorspace, Rec601LumaColorspace,
523
- Rec601YCbCrColorspace, Rec709LumaColorspace, Rec709YCbCrColorspace,
524
- LogColorspace enumerators to the ColorspaceType enumeration class.
525
- o Fixed bug #2844, Image#to_blob exits if the image is a 0x0 JPEG
526
- o Fixed bug #2688, Image#annotate, Draw#get_multiline_type_metrics handle
527
- newline characters properly
528
- o Tested with ImageMagick 6.2.6
529
- o Removed support for all versions of ImageMagick prior to 6.0.0
530
-
531
- RMagick 1.9.3
532
- o Feature #2521, add Image#distortion_channel method
533
- o Fixed bug #2546, ImageList#to_blob builds multi-image blobs again. (ImageMagick 6.2.0
534
- silently broke the ImageToBlob method.) Thanks to Tom Werner for reporting this bug.
535
- o Test with GraphicsMagick 1.1.7
536
-
537
- RMagick 1.9.2
538
- o Feature #2412, add the virtual_pixel_method attribute and the VirtualPixelMethod
539
- enumeration
540
- o Feature #2462, add the ticks_per_second attribute
541
-
542
- RMagick 1.9.1
543
- o Fixed bug #2157, Image#total_colors is now an alias of Image#number_colors
544
- o Fixed bug #2155, Image#dispose= now accepts a DisposeType enum, #dispose
545
- now returns a DisposeType enum.
546
- o Fixed bug #2156, Image#properties no longer returns garbage for the property
547
- name and value.
548
- o Fixed bug #2190, Image#compose now returns a CompositeOperator
549
- o Fixed bug #2191, Image#composite no longer abends when called with 0 arguments
550
- o Fixed bug #2213, ImageList#montage method no longer leaves the imagelist corrupt
551
- after raising an ImageMagickError
552
- o Feature #2159, added GrayChannel ChannelType enum value, BlendCompositeOp and
553
- ColorBurnCompositeOp CompositeOperator enum values, RLECompression CompressionType
554
- enum value, deprecate RunlengthCompression
555
- o Feature #2172, added optional argument to crop and crop! to reset the saved
556
- page offsets after cropping
557
- o Deprecated Image#channel_threshold. This method is deprecated in ImageMagick.
558
- o Feature #2373, change Image#import_pixels to accept a pixel data buffer as well
559
- as a pixel data array. (Thanks to Ara T. Howard for this suggestion!)
560
- o Fixed to compile without errors with ImageMagick 6.2.4-4.
561
-
562
- RMagick 1.9.0
563
- o Added Image#monitor=, Image::Info#monitor=. Deprecated Magick.set_monitor.
564
- o Fixed bug #2070, support color names with embedded spaces
565
- o Fixed bug #2109, properly scope Magick constants in RVG
566
-
567
- RMagick 1.8.3
568
- o Tested with ImageMagick 6.2.3-2
569
- o Added comment, delay, dispose, fill, gravity, and label attributes to
570
- Image::Info
571
-
572
- RMagick 1.8.2
573
- o Fix bug #1983, potential buffer overflow in version_constants
574
- o Added feature #2015, support the pointsize, authenticate,
575
- and sampling_factor attributes in Image::Info
576
-
577
- RMagick 1.8.1
578
- o Fix bugs #1876, #1888, #1919
579
- o Added feature #1941, RVG's polyline, polygon accept array arguments
580
- o Numerous fixes to the RVG documentation
581
-
582
- RMagick 1.8.0
583
- o Added Image#shadow (ImageMagick 6.1.7)
584
- o Added Image::Info#undefine, #[], #[]=
585
- o Added sigmoidal_contrast_channel, sepiatone to Image class (ImageMagick 6.2.1)
586
- o Added JPEG2000Compression constant (ImageMagick 6.2.2)
587
- o Incorporated RVG classes
588
- o Added RVG documentation, examples, updated installer
589
- o Tested with ImageMagick 6.2.2-0, latest GraphicsMagick 1.2
590
-
591
- RMagick 1.7.4
592
- o Fix bug #1727
593
- o Fix affine_transform.rb
594
- o Tested with ImageMagick 6.2.1
595
-
596
- RMagick 1.7.3
597
- o Fix bug #1553, a build issue with ImageMagick 6.0.x
598
-
599
- RMagick 1.7.2
600
- o Fix bugs #1308, #1310, #1314, #1533
601
-
602
- RMagick 1.7.1
603
- o Fix bugs #1250, #1253
604
- o Tested with ImageMagick 6.1.7, Ruby 1.8.2
605
-
606
- RMagick 1.7.0
607
- o Added splice, set_channel_depth to Image class (ImageMagick 6.0.0)
608
- o Added sharpen_channel, blur_channel to Image class (ImageMagick 6.0.1)
609
- o Added get_multiline_type_metrics to Draw class (ImageMagick 6.1.5),
610
- added new example scripts and images
611
- o Added normalize_channel, unsharp_mask_channel to Image class
612
- (ImageMagick 6.1.0)
613
- o Added read_inline to Image class
614
- o Renamed channel_compare to compare_channel, retained old name as an alias
615
- for backward compatibility.
616
- o Added default values for unsharp_mask arguments
617
- o Fixed bug #1193
618
- o Fixed segfault in destroy_Draw when Ruby gc'd the temp file name
619
- array before calling destroy_Draw
620
- o Tested with ImageMagick 6.1.6, GraphicsMagick 1.1.4, Ruby 1.8.2preview3.
621
-
622
- RMagick 1.6.2
623
- o Fixed ImageList#deconstruct to return an imagelist
624
- o Fixed installation procedure to propagate user's CFLAGS, CPPFLAGS,
625
- and LDFLAGS through to the low-level Makefile
626
- o Fixed bugs #1048, #1127
627
-
628
- RMagick 1.6.1
629
- o Changed to match changes in ImageMagick 6.1.4 API
630
- o Fixed bug #950
631
-
632
- RMagick 1.6.0
633
- o Added posterize, gaussian_blur_channel, convolve_channel methods to Image class
634
- (ImageMagick 6.0.0)
635
- o Added new CompositeOperator constants (ImageMagick 6.0.0)
636
- o Added trim and trim! methods to Image class
637
- o Added each method to Enum subclasses
638
- o Added stroke_width= attribute to the Draw class
639
- o Fixed bugs #624, #642, #716, applied patch #819 (thanks to Daniel Quimper)
640
- o Tested with ImageMagick 6.0.5-2, GraphicsMagick 1.1.3, Ruby 1.8.2
641
-
642
- RMagick 1.5.0
643
- o Added meaningful implementations of dup and clone to the Image and Draw
644
- classes. Clarified the documentation.
645
- o Do not allow changes to frozen Image, ImageList, and Draw objects.
646
- o Raise TypeError if freeze method sent to Image::Info or ImageList::Montage
647
- object.
648
- o Added view method to Image, Image::View class (thanks to Ara T. Howard and
649
- Charles Comstock on c.l.r for the discussion which prompted me to add this class)
650
- o Added grayscale_pseudo_class method to Image class (GraphicsMagick 1.1)
651
- o Added radial_blur, random_threshold_channel methods to Image class
652
- (ImageMagick 6.0.0)
653
- o Added quantum_operator method to Image class (GraphicsMagick 1.1, ImageMagick 6.0.0)
654
- o Added statistics method to Image class (GraphicsMagick 1.1)
655
- o Support channel_extrema, channel_mean with GraphicsMagick 1.1
656
- o Added endian attribute to Image class
657
- o Added composite! method to Image class
658
- o Deprecated random_channel_threshold method when linked with ImageMagick 6.0.0.
659
-
660
- RMagick 1.4.0
661
- o Revised and updated documentation
662
- o Implemented enumeration values as instances of an Enum
663
- class. Based on a description by Paul Brannon in ruby-talk 79041.
664
- o Added HSLColorspace, HWBColorspace constants (ImageMagick 5.5.7,
665
- GraphicsMagick 1.0.2)
666
- o Added CopyCyanCompositeOp, CopyMagentaCompositeOp,
667
- CopyYellowCompositeOp, CopyBlackCompositeOp constants (ImageMagick 5.5.7,
668
- GraphicsMagick 1.1)
669
- o Added ReplaceCompositeOp. CopyCompositeOp constants (ImageMagick 6.0.0)
670
- o Added color_histogram to Image class. (ImageMagick 6.0.0, GraphicsMagick 1.1)
671
- o Added define method to Image::Info class (ImageMagick 6.0.0, GraphicsMagick 1.1)
672
- o Added tint, each_profile, channel_extrema, channel_compare,
673
- channel_depth, channel_mean, quantum_depth, preview, gamma_channel,
674
- negate_channel, bilevel_channel methods to Image class (ImageMagick 6.0.0)
675
- o Added get_exif_by_entry, get_exif_by_tag to Image class
676
- o Added border! method to Image class
677
- o Added fcmp, intensity methods to Pixel class
678
- o Added Version_long constant
679
- o The 'fuzz' attribute in the Image and ImageInfo classes now
680
- accepts a percentage value as well as a numeric value.
681
- o Added Geometry class and changed all methods that accept a geometry
682
- string to accept a Geometry object as well
683
- o Added dup and clone methods to the ImageList, Image, and Draw
684
- classes (Fix for bug #254.)
685
- o Tested with latest ImageMagick 6.0.0 beta and GraphicsMagick 1.1 snapshot
686
-
687
- RMagick 1.3.2
688
- o Fix profile! to require only 2 arguments, as documented.
689
- o Correct spelling of 'transparent' in text_antialias.rb example.
690
- o Add output of `Magick-config --libs` to LIBS variable in configure
691
- o Minor fixes in documentation
692
- o Test with GraphicsMagick 1.0.4
693
- o Test with latest ImageMagick 5.5.8 beta
694
-
695
- RMagick 1.3.1
696
- o Fixed default base URI in the links to the installed xMagick doc
697
- o Applied the patch for bug #76 that caused the rubyname.rb example
698
- to hang when installing on FreeBSD.
699
- o Fixed the <=> method in Image to return nil when the class of the
700
- other object is not Image
701
- o Added code to ensure that the `text' argument to Draw#text is not
702
- nil or empty
703
- o Fixed the handle_error function to re-initialize the exception
704
- structure after destroying its contents.
705
-
706
- RMagick 1.3.0
707
- o Added strip!, import_pixels, export_pixels, random_channel_threshold
708
- to the Image class. (Available only with ImageMagick 5.5.8, which
709
- is still in beta.)
710
- o Added black_threshold and white_threshold to the Image class.
711
- o Added format= attribute writer to the Image class
712
- o Added monochrome= attribute writer to the Image::Info class
713
- o Added annotate to the Image class.
714
- o Made the image argument to get_type_metrics optional. (Thanks to
715
- Hal Fulton for suggesting this change and the annotate change!)
716
- o Enhance the read, write, and ping methods in both the Image
717
- class and the ImageList class to accept an open File object as
718
- well as a filename argument.
719
- o Added change_geometry to the Image class
720
- o Changed configure to generate top-level Makefile with install
721
- and uninstall targets. (Thanks to Bob Friesenhahn for the
722
- suggestion and the the Makefile!)
723
- o Incorporated 1.2.2.1 patch to correct problems when building
724
- with Ruby 1.6.7.
725
- o Added "magick_location" attribute to the ImageMagickError
726
- class. (Available only with GraphicsMagick 1.1, not yet released.)
727
- o Tested with ImageMagick 5.5.8 beta
728
- o Tested with GraphicsMagick 1.0.2 and 1.1 snapshot
729
- o Tested with Ruby 1.8.0
730
- o Changed to MIT license
731
-
732
- RMagick 1.2.2
733
- o Fixed many bugs in configuration script
734
- o Added support for GraphicsMagick 1.0 (with assistance from Bob Friesenhahn)
735
- o Changed default documentation directory (--doc-dir option default) to
736
- $prefix/share/RMagick
737
- o Added "examples" directory to contain example programs that aren't
738
- referenced by the documentation
739
-
740
- RMagick 1.2.1
741
- o Yet another fix to the Cygwin installation procedure
742
-
743
- RMagick 1.2.0
744
- o Changed install to work correctly on Cygwin
745
- (Cygwin testing by Yuki Hirakawa and David Martinez Garcia.)
746
- o Changed install to support Gentoo ebuild
747
- (Gentoo support provided by Tom Payne.)
748
- o Changed configure script to find IM doc in IM 5.5.7
749
- o Added Image#capture
750
- o Added optional matte_pct argument to Image#colorize
751
- o Add default argument values to Image#gaussian_blur
752
- o Fix bug in Image#store_pixels that prevented it from working with
753
- GIF and other PseudoClass image formats
754
- o Changed Image#crop and Image#crop! to accept a GravityType constant
755
- as the first argument, instead of the x- and y-offset arguments.
756
- (Suggested by Robert Wagner.)
757
- o Added Image::Info#filename=, image_type=
758
- o Added ImageList#__map__ as an alias for Enumerable#map
759
- o Added fetch, insert, select, reject methods to ImageList class for
760
- Ruby 1.8.0
761
- o Undefined zip and transpose methods in ImageList class for Ruby 1.8.0
762
- o ImageMagick 5.5.7 supported
763
-
764
- RMagick 1.1.0
765
- o Fixed bug in handle_error that caused an abend when linked with IM 5.5.6
766
- o Added RMAGICK image "format". When read, returns 252x108 RMagick logo
767
- in PNG format.
768
- o Changed examples to give all floating point constants a leading digit.
769
- o Added Image#rotate!
770
- o Tested with Ruby 1.8.0preview2
771
- o Added Image#extract_info, Image::Info#extract=, Image::Info#scene=,
772
- Image::Info#number_scenes=, Image::Info#tile=
773
- o Added Draw#text_align, Draw#text_anchor, Draw#text_undercolor
774
- o ImageMagick 5.5.6 supported
775
-
776
- RMagick 1.0.0
777
- o Fixed warnings when compiling with Ruby 1.8.0
778
- o Added Draw#rotation=, rotated_text.rb
779
- o Fixed temp image files in Montage_texture and Draw_composite
780
- o ImageMagick 5.5.5 supported
781
-
782
- RMagick 0.9.5
783
- o Added channel.rb example
784
- o Fixed install problems with IM 5.5.1
785
-
786
- RMagick 0.9.4
787
- o Cleaned up documentation.
788
- o Added logging methods Magick.set_log_event_mask and Magick.set_log_format
789
- o Added Magick.set_monitor
790
- o Added custom serialization methods _dump and _load to Image class.
791
- Added marshaling section to usage doc.
792
- o Added Image#mime_type
793
- o Changed install to use autoconf-generated configure script
794
- o Replaced makedoc.rb with post-install.rb hook
795
- o Added rmconst.rb utility script
796
- o ImageMagick 5.5.4 supported
797
-
798
- RMagick 0.9.3
799
- o Changed ImageList#<=> to use same algorithm as Array#<=>
800
- o Changed Draw class variables to class constants
801
- o Fixed bug in Magick::colors method that caused some colors
802
- to be repeated or missed when the optional block is used
803
- o Changed fill classes to not inherit from common Fill class.
804
- Removed Fill class.
805
- o Improved usage documentation
806
- o Added Image#level_channel, introduced with IM 5.5.3
807
- o ImageMagick 5.5.3 supported
808
- o Ruby 1.6.8, 1.8.0preview1 supported
809
-
810
- RMagick 0.9.2
811
- o Added crop!, flip!, flop!, magnify!, minify!, resize!, sample!,
812
- scale!, shave!, channel_threshold methods to Image class
813
- o Documented DisposeType, ColorSeparationMatteType and OptimizeType
814
- constants
815
- o Changed Image#<=>, ImageList#<=> to raise TypeError if the other
816
- argument is not in the same class
817
- o Deleted Image#==, ImageList#==, include Comparable in both classes
818
- o Added Image#thumbnail, thumbnail!, adaptive_threshold for 5.5.2 & later
819
- o Used image list functions in 5.5.2 & later
820
- o ImageMagick 5.5.2 supported
821
- o Removed last vestiges of 5.4.9 support
822
-
823
- RMagick 0.9.1
824
- o Added -Wl,rpath option to $LDFLAGS in extconf.rb
825
- o #include <sys/types.h> in rmagick.h
826
- o Changed set_cache_threshold to call SetMagickResourceLimit instead of SetCacheThreshold
827
- o Changed Image_texture_flood_fill to clone texture image instead of adding a reference
828
- o Many fixes to the Array methods in ImageList
829
- o Defined Image#<=>, defined Image#== in terms of Image#<=>
830
- o Defined ImageList#<=> in terms of Image#<=>
831
-
832
- RMagick 0.9.0
833
- 1st beta