This repository was archived by the owner on Feb 5, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathImage.h
1583 lines (1277 loc) · 67 KB
/
Image.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// This may look like C code, but it is really -*- C++ -*-
//
// Copyright Bob Friesenhahn, 1999, 2000, 2001, 2002, 2003
//
// Definition of Image, the representation of a single image in Magick++
//
#if !defined(Magick_Image_header)
#define Magick_Image_header
#include "Include.h"
#include <string>
#include <list>
#include "Blob.h"
#include "Color.h"
#include "Drawable.h"
#include "Exception.h"
#include "Geometry.h"
#include "TypeMetric.h"
namespace Magick
{
// Forward declarations
class Options;
class ImageRef;
extern MagickPPExport const char *borderGeometryDefault;
extern MagickPPExport const char *frameGeometryDefault;
extern MagickPPExport const char *raiseGeometryDefault;
// Compare two Image objects regardless of LHS/RHS
// Image sizes and signatures are used as basis of comparison
int MagickPPExport operator == ( const Magick::Image& left_,
const Magick::Image& right_ );
int MagickPPExport operator != ( const Magick::Image& left_,
const Magick::Image& right_ );
int MagickPPExport operator > ( const Magick::Image& left_,
const Magick::Image& right_ );
int MagickPPExport operator < ( const Magick::Image& left_,
const Magick::Image& right_ );
int MagickPPExport operator >= ( const Magick::Image& left_,
const Magick::Image& right_ );
int MagickPPExport operator <= ( const Magick::Image& left_,
const Magick::Image& right_ );
// C library initialization routine
void MagickPPExport InitializeMagick ( const char *path_ );
//
// Image is the representation of an image. In reality, it actually
// a handle object which contains a pointer to a shared reference
// object (ImageRef). As such, this object is extremely space efficient.
//
class MagickPPExport Image
{
public:
// Construct from image file or image specification
Image ( const std::string &imageSpec_ );
// Construct a blank image canvas of specified size and color
Image ( const Geometry &size_, const Color &color_ );
// Construct Image from in-memory BLOB
Image ( const Blob &blob_ );
// Construct Image of specified size from in-memory BLOB
Image ( const Blob &blob_, const Geometry &size_ );
// Construct Image of specified size and depth from in-memory BLOB
Image ( const Blob &blob_, const Geometry &size,
const size_t depth );
// Construct Image of specified size, depth, and format from
// in-memory BLOB
Image ( const Blob &blob_, const Geometry &size,
const size_t depth_,
const std::string &magick_ );
// Construct Image of specified size, and format from in-memory
// BLOB
Image ( const Blob &blob_, const Geometry &size,
const std::string &magick_ );
// Construct an image based on an array of raw pixels, of
// specified type and mapping, in memory
Image ( const size_t width_,
const size_t height_,
const std::string &map_,
const StorageType type_,
const void *pixels_ );
// Default constructor
Image ( void );
// Destructor
virtual ~Image ();
/// Copy constructor
Image ( const Image & image_ );
// Assignment operator
Image& operator= ( const Image &image_ );
//////////////////////////////////////////////////////////////////////
//
// Image operations
//
//////////////////////////////////////////////////////////////////////
// Adaptive-blur image with specified blur factor
// The radius_ parameter specifies the radius of the Gaussian, in
// pixels, not counting the center pixel. The sigma_ parameter
// specifies the standard deviation of the Laplacian, in pixels.
void adaptiveBlur ( const double radius_ = 0.0,
const double sigma_ = 1.0 );
// This is shortcut function for a fast interpolative resize using mesh
// interpolation. It works well for small resizes of less than +/- 50%
// of the original image size. For larger resizing on images a full
// filtered and slower resize function should be used instead.
void adaptiveResize ( const Geometry &geometry_ );
// Adaptively sharpens the image by sharpening more intensely near image
// edges and less intensely far from edges. We sharpen the image with a
// Gaussian operator of the given radius and standard deviation (sigma).
// For reasonable results, radius should be larger than sigma.
void adaptiveSharpen ( const double radius_ = 0.0,
const double sigma_ = 1.0 );
void adaptiveSharpenChannel ( const ChannelType channel_,
const double radius_ = 0.0,
const double sigma_ = 1.0 );
// Local adaptive threshold image
// http://www.dai.ed.ac.uk/HIPR2/adpthrsh.htm
// Width x height define the size of the pixel neighborhood
// offset = constant to subtract from pixel neighborhood mean
void adaptiveThreshold ( const size_t width,
const size_t height,
const ::ssize_t offset = 0 );
// Add noise to image with specified noise type
void addNoise ( const NoiseType noiseType_ );
void addNoiseChannel ( const ChannelType channel_,
const NoiseType noiseType_ );
// Transform image by specified affine (or free transform) matrix.
void affineTransform ( const DrawableAffine &affine );
// Activates, deactivates, resets, or sets the alpha channel.
void alphaChannel ( AlphaChannelType alphaType_ );
//
// Annotate image (draw text on image)
//
// Gravity effects text placement in bounding area according to rules:
// NorthWestGravity text bottom-left corner placed at top-left
// NorthGravity text bottom-center placed at top-center
// NorthEastGravity text bottom-right corner placed at top-right
// WestGravity text left-center placed at left-center
// CenterGravity text center placed at center
// EastGravity text right-center placed at right-center
// SouthWestGravity text top-left placed at bottom-left
// SouthGravity text top-center placed at bottom-center
// SouthEastGravity text top-right placed at bottom-right
// Annotate using specified text, and placement location
void annotate ( const std::string &text_,
const Geometry &location_ );
// Annotate using specified text, bounding area, and placement
// gravity
void annotate ( const std::string &text_,
const Geometry &boundingArea_,
const GravityType gravity_ );
// Annotate with text using specified text, bounding area,
// placement gravity, and rotation.
void annotate ( const std::string &text_,
const Geometry &boundingArea_,
const GravityType gravity_,
const double degrees_ );
// Annotate with text (bounding area is entire image) and placement
// gravity.
void annotate ( const std::string &text_,
const GravityType gravity_ );
// Inserts the artifact with the specified name and value into
// the artifact tree of the image.
void artifact ( const std::string &name_,
const std::string &value_ );
// Returns the value of the artifact with the specified name.
std::string artifact ( const std::string &name_ );
// Extracts the 'mean' from the image and adjust the image to try
// make set its gamma appropriatally.
void autoGamma ( void );
void autoGammaChannel ( const ChannelType channel_ );
// Adjusts the levels of a particular image channel by scaling the
// minimum and maximum values to the full quantum range.
void autoLevel ( void );
void autoLevelChannel ( const ChannelType channel_ );
// Adjusts an image so that its orientation is suitable for viewing.
void autoOrient ( void );
// Forces all pixels below the threshold into black while leaving all
// pixels at or above the threshold unchanged.
void blackThreshold ( const std::string &threshold_ );
void blackThresholdChannel ( const ChannelType channel_,
const std::string &threshold_ );
// Simulate a scene at nighttime in the moonlight.
void blueShift ( const double factor_ = 1.5 );
// Blur image with specified blur factor
// The radius_ parameter specifies the radius of the Gaussian, in
// pixels, not counting the center pixel. The sigma_ parameter
// specifies the standard deviation of the Laplacian, in pixels.
void blur ( const double radius_ = 0.0,
const double sigma_ = 1.0 );
void blurChannel ( const ChannelType channel_,
const double radius_ = 0.0,
const double sigma_ = 1.0 );
// Border image (add border to image)
void border ( const Geometry &geometry_
= borderGeometryDefault );
// Changes the brightness and/or contrast of an image. It converts the
// brightness and contrast parameters into slope and intercept and calls
// a polynomical function to apply to the image.
void brightnessContrast ( const double brightness_ = 0.0,
const double contrast_ = 0.0 );
void brightnessContrastChannel ( const ChannelType channel_,
const double brightness_ = 0.0,
const double contrast_ = 0.0 );
// Extract channel from image
void channel ( const ChannelType channel_ );
// Set or obtain modulus channel depth
void channelDepth ( const ChannelType channel_,
const size_t depth_ );
size_t channelDepth ( const ChannelType channel_ );
// Charcoal effect image (looks like charcoal sketch)
// The radius_ parameter specifies the radius of the Gaussian, in
// pixels, not counting the center pixel. The sigma_ parameter
// specifies the standard deviation of the Laplacian, in pixels.
void charcoal ( const double radius_ = 0.0,
const double sigma_ = 1.0 );
// Chop image (remove vertical or horizontal subregion of image)
// FIXME: describe how geometry argument is used to select either
// horizontal or vertical subregion of image.
void chop ( const Geometry &geometry_ );
// Accepts a lightweight Color Correction Collection
// (CCC) file which solely contains one or more color corrections and
// applies the correction to the image.
void cdl ( const std::string &cdl_ );
// Set each pixel whose value is below zero to zero and any the
// pixel whose value is above the quantum range to the quantum range (e.g.
// 65535) otherwise the pixel value remains unchanged.
void clamp ( void );
void clampChannel ( const ChannelType channel_ );
// Sets the image clip mask based on any clipping path information
// if it exists.
void clip ( void );
void clipPath ( const std::string pathname_,
const bool inside_ );
// Apply a color lookup table (CLUT) to the image.
void clut ( const Image &clutImage_ );
void clutChannel ( const ChannelType channel_,
const Image &clutImage_);
// Colorize image with pen color, using specified percent opacity
// for red, green, and blue quantums
void colorize ( const unsigned int opacityRed_,
const unsigned int opacityGreen_,
const unsigned int opacityBlue_,
const Color &penColor_ );
// Colorize image with pen color, using specified percent opacity.
void colorize ( const unsigned int opacity_,
const Color &penColor_ );
// Apply a color matrix to the image channels. The user supplied
// matrix may be of order 1 to 5 (1x1 through 5x5).
void colorMatrix ( const size_t order_,
const double *color_matrix_ );
// Compare current image with another image
// Sets meanErrorPerPixel, normalizedMaxError, and normalizedMeanError
// in the current image. False is returned if the images are identical.
bool compare ( const Image &reference_ );
// Compare current image with another image
// Returns the distortion based on the specified metric.
double compare ( const Image &reference_,
const MetricType metric_ );
double compareChannel ( const ChannelType channel_,
const Image &reference_,
const MetricType metric_ );
// Compare current image with another image
// Sets the distortion and returns the difference image.
Image compare ( const Image &reference_,
const MetricType metric_,
double *distortion );
Image compareChannel ( const ChannelType channel_,
const Image &reference_,
const MetricType metric_,
double *distortion );
// Compose an image onto another at specified offset and using
// specified algorithm
void composite ( const Image &compositeImage_,
const ::ssize_t xOffset_,
const ::ssize_t yOffset_,
const CompositeOperator compose_
= InCompositeOp );
void composite ( const Image &compositeImage_,
const Geometry &offset_,
const CompositeOperator compose_
= InCompositeOp );
void composite ( const Image &compositeImage_,
const GravityType gravity_,
const CompositeOperator compose_
= InCompositeOp );
// Contrast image (enhance intensity differences in image)
void contrast ( const size_t sharpen_ );
// A simple image enhancement technique that attempts to improve the
// contrast in an image by 'stretching' the range of intensity values
// it contains to span a desired range of values. It differs from the
// more sophisticated histogram equalization in that it can only apply a
// linear scaling function to the image pixel values. As a result the
// 'enhancement' is less harsh.
void contrastStretch ( const double black_point_,
const double white_point_ );
void contrastStretchChannel ( const ChannelType channel_,
const double black_point_,
const double white_point_ );
// Convolve image. Applies a user-specified convolution to the image.
// order_ represents the number of columns and rows in the filter kernel.
// kernel_ is an array of doubles representing the convolution kernel.
void convolve ( const size_t order_,
const double *kernel_ );
// Crop image (subregion of original image)
void crop ( const Geometry &geometry_ );
// Cycle image colormap
void cycleColormap ( const ::ssize_t amount_ );
// Converts cipher pixels to plain pixels.
void decipher ( const std::string &passphrase_ );
// Removes skew from the image. Skew is an artifact that occurs in scanned
// images because of the camera being misaligned, imperfections in the
// scanning or surface, or simply because the paper was not placed
// completely flat when scanned. The value of threshold_ ranges from 0
// to QuantumRange.
void deskew ( const double threshold_ );
// Despeckle image (reduce speckle noise)
void despeckle ( void );
// Display image on screen
void display ( void );
// Distort image. distorts an image using various distortion methods, by
// mapping color lookups of the source image to a new destination image
// usally of the same size as the source image, unless 'bestfit' is set to
// true.
void distort ( const DistortImageMethod method_,
const size_t number_arguments_,
const double *arguments_,
const bool bestfit_ = false );
// Draw on image using a single drawable
void draw ( const Drawable &drawable_ );
// Draw on image using a drawable list
void draw ( const std::list<Magick::Drawable> &drawable_ );
// Edge image (hilight edges in image)
void edge ( const double radius_ = 0.0 );
// Emboss image (hilight edges with 3D effect)
// The radius_ parameter specifies the radius of the Gaussian, in
// pixels, not counting the center pixel. The sigma_ parameter
// specifies the standard deviation of the Laplacian, in pixels.
void emboss ( const double radius_ = 0.0,
const double sigma_ = 1.0);
// Converts pixels to cipher-pixels.
void encipher ( const std::string &passphrase_ );
// Enhance image (minimize noise)
void enhance ( void );
// Equalize image (histogram equalization)
void equalize ( void );
// Erase image to current "background color"
void erase ( void );
// Extend the image as defined by the geometry.
void extent ( const Geometry &geometry_ );
void extent ( const Geometry &geometry_,
const Color &backgroundColor );
void extent ( const Geometry &geometry_,
const GravityType gravity_ );
void extent ( const Geometry &geometry_,
const Color &backgroundColor,
const GravityType gravity_ );
// Flip image (reflect each scanline in the vertical direction)
void flip ( void );
// Flood-fill color across pixels that match the color of the
// target pixel and are neighbors of the target pixel.
// Uses current fuzz setting when determining color match.
void floodFillColor ( const ::ssize_t x_,
const ::ssize_t y_,
const Color &fillColor_ );
void floodFillColor ( const Geometry &point_,
const Color &fillColor_ );
// Flood-fill color across pixels starting at target-pixel and
// stopping at pixels matching specified border color.
// Uses current fuzz setting when determining color match.
void floodFillColor ( const ::ssize_t x_,
const ::ssize_t y_,
const Color &fillColor_,
const Color &borderColor_ );
void floodFillColor ( const Geometry &point_,
const Color &fillColor_,
const Color &borderColor_ );
// Floodfill pixels matching color (within fuzz factor) of target
// pixel(x,y) with replacement opacity value using method.
void floodFillOpacity ( const ::ssize_t x_,
const ::ssize_t y_,
const unsigned int opacity_,
const PaintMethod method_ );
// Flood-fill texture across pixels that match the color of the
// target pixel and are neighbors of the target pixel.
// Uses current fuzz setting when determining color match.
void floodFillTexture ( const ::ssize_t x_,
const ::ssize_t y_,
const Image &texture_ );
void floodFillTexture ( const Geometry &point_,
const Image &texture_ );
// Flood-fill texture across pixels starting at target-pixel and
// stopping at pixels matching specified border color.
// Uses current fuzz setting when determining color match.
void floodFillTexture ( const ::ssize_t x_,
const ::ssize_t y_,
const Image &texture_,
const Color &borderColor_ );
void floodFillTexture ( const Geometry &point_,
const Image &texture_,
const Color &borderColor_ );
// Flop image (reflect each scanline in the horizontal direction)
void flop ( void );
// Frame image
void frame ( const Geometry &geometry_ = frameGeometryDefault );
void frame ( const size_t width_,
const size_t height_,
const ::ssize_t innerBevel_ = 6,
const ::ssize_t outerBevel_ = 6 );
// Applies a mathematical expression to the image.
void fx ( const std::string expression );
void fx ( const std::string expression,
const Magick::ChannelType channel );
// Gamma correct image
void gamma ( const double gamma_ );
void gamma ( const double gammaRed_,
const double gammaGreen_,
const double gammaBlue_ );
// Gaussian blur image
// The number of neighbor pixels to be included in the convolution
// mask is specified by 'width_'. The standard deviation of the
// gaussian bell curve is specified by 'sigma_'.
void gaussianBlur ( const double width_, const double sigma_ );
void gaussianBlurChannel ( const ChannelType channel_,
const double width_,
const double sigma_ );
// Apply a color lookup table (Hald CLUT) to the image.
void haldClut ( const Image &clutImage_ );
// Implode image (special effect)
void implode ( const double factor_ );
// Implements the inverse discrete Fourier transform (DFT) of the image
// either as a magnitude / phase or real / imaginary image pair.
void inverseFourierTransform ( const Image &phase_ );
void inverseFourierTransform ( const Image &phase_,
const bool magnitude_ );
// Label image
void label ( const std::string &label_ );
// Level image. Adjust the levels of the image by scaling the
// colors falling between specified white and black points to the
// full available quantum range. The parameters provided represent
// the black, mid (gamma), and white points. The black point
// specifies the darkest color in the image. Colors darker than
// the black point are set to zero. Mid point (gamma) specifies a
// gamma correction to apply to the image. White point specifies
// the lightest color in the image. Colors brighter than the
// white point are set to the maximum quantum value. The black and
// white point have the valid range 0 to QuantumRange while mid (gamma)
// has a useful range of 0 to ten.
void level ( const double black_point,
const double white_point,
const double mid_point = 1.0 );
// Level image channel. Adjust the levels of the image channel by
// scaling the values falling between specified white and black
// points to the full available quantum range. The parameters
// provided represent the black, mid (gamma), and white points.
// The black point specifies the darkest color in the
// image. Colors darker than the black point are set to zero. Mid
// point (gamma) specifies a gamma correction to apply to the
// image. White point specifies the lightest color in the image.
// Colors brighter than the white point are set to the maximum
// quantum value. The black and white point have the valid range 0
// to QuantumRange while mid (gamma) has a useful range of 0 to ten.
void levelChannel ( const ChannelType channel,
const double black_point,
const double white_point,
const double mid_point = 1.0 );
// Maps the given color to "black" and "white" values, linearly spreading
// out the colors, and level values on a channel by channel bases, as
// per level(). The given colors allows you to specify different level
// ranges for each of the color channels separately.
void levelColors ( const Color &blackColor_,
const Color &whiteColor_,
const bool invert_ = true );
void levelColorsChannel ( const ChannelType channel_,
const Color &blackColor_,
const Color &whiteColor_,
const bool invert_ = true );
// Discards any pixels below the black point and above the white point and
// levels the remaining pixels.
void linearStretch ( const double blackPoint_,
const double whitePoint_ );
// Rescales image with seam carving.
void liquidRescale ( const Geometry &geometry_ );
// Magnify image by integral size
void magnify ( void );
// Remap image colors with closest color from reference image
void map ( const Image &mapImage_,
const bool dither_ = false );
// Floodfill designated area with replacement opacity value
void matteFloodfill ( const Color &target_,
const unsigned int opacity_,
const ::ssize_t x_, const ::ssize_t y_,
const PaintMethod method_ );
// Filter image by replacing each pixel component with the median
// color in a circular neighborhood
void medianFilter ( const double radius_ = 0.0 );
// Reduce image by integral size
void minify ( void );
// Modulate percent hue, saturation, and brightness of an image
void modulate ( const double brightness_,
const double saturation_,
const double hue_ );
// Motion blur image with specified blur factor
// The radius_ parameter specifies the radius of the Gaussian, in
// pixels, not counting the center pixel. The sigma_ parameter
// specifies the standard deviation of the Laplacian, in pixels.
// The angle_ parameter specifies the angle the object appears
// to be comming from (zero degrees is from the right).
void motionBlur ( const double radius_,
const double sigma_,
const double angle_ );
// Negate colors in image. Set grayscale to only negate grayscale
// values in image.
void negate ( const bool grayscale_ = false );
void negateChannel ( const ChannelType channel_,
const bool grayscale_ = false );
// Normalize image (increase contrast by normalizing the pixel
// values to span the full range of color values)
void normalize ( void );
// Oilpaint image (image looks like oil painting)
void oilPaint ( const double radius_ = 3.0 );
// Set or attenuate the opacity channel in the image. If the image
// pixels are opaque then they are set to the specified opacity
// value, otherwise they are blended with the supplied opacity
// value. The value of opacity_ ranges from 0 (completely opaque)
// to QuantumRange. The defines OpaqueOpacity and TransparentOpacity are
// available to specify completely opaque or completely
// transparent, respectively.
void opacity ( const unsigned int opacity_ );
// Change color of opaque pixel to specified pen color.
void opaque ( const Color &opaqueColor_,
const Color &penColor_ );
// Set each pixel whose value is less than epsilon to epsilon or
// -epsilon (whichever is closer) otherwise the pixel value remains
// unchanged.
void perceptible ( const double epsilon_ );
void perceptibleChannel ( const ChannelType channel_,
const double epsilon_ );
// Ping is similar to read except only enough of the image is read
// to determine the image columns, rows, and filesize. Access the
// columns(), rows(), and fileSize() attributes after invoking
// ping. The image data is not valid after calling ping.
void ping ( const std::string &imageSpec_ );
// Ping is similar to read except only enough of the image is read
// to determine the image columns, rows, and filesize. Access the
// columns(), rows(), and fileSize() attributes after invoking
// ping. The image data is not valid after calling ping.
void ping ( const Blob &blob_ );
// Simulates a Polaroid picture.
void polaroid ( const std::string &caption_,
const double angle_ );
// Reduces the image to a limited number of colors for a "poster" effect.
void posterize ( const size_t levels_,
const bool dither_ = false );
void posterizeChannel ( const ChannelType channel_,
const size_t levels_,
const bool dither_ = false );
// Execute a named process module using an argc/argv syntax similar to
// that accepted by a C 'main' routine. An exception is thrown if the
// requested process module doesn't exist, fails to load, or fails during
// execution.
void process ( std::string name_,
const ::ssize_t argc_,
const char **argv_ );
// Quantize image (reduce number of colors)
void quantize ( const bool measureError_ = false );
void quantumOperator ( const ChannelType channel_,
const MagickEvaluateOperator operator_,
double rvalue_);
void quantumOperator ( const ::ssize_t x_,const ::ssize_t y_,
const size_t columns_,
const size_t rows_,
const ChannelType channel_,
const MagickEvaluateOperator operator_,
const double rvalue_);
// Raise image (lighten or darken the edges of an image to give a
// 3-D raised or lowered effect)
void raise ( const Geometry &geometry_ = raiseGeometryDefault,
const bool raisedFlag_ = false );
// Random threshold image.
//
// Changes the value of individual pixels based on the intensity
// of each pixel compared to a random threshold. The result is a
// low-contrast, two color image. The thresholds_ argument is a
// geometry containing LOWxHIGH thresholds. If the string
// contains 2x2, 3x3, or 4x4, then an ordered dither of order 2,
// 3, or 4 will be performed instead. If a channel_ argument is
// specified then only the specified channel is altered. This is
// a very fast alternative to 'quantize' based dithering.
void randomThreshold( const Geometry &thresholds_ );
void randomThresholdChannel( const Geometry &thresholds_,
const ChannelType channel_ );
// Read single image frame into current object
void read ( const std::string &imageSpec_ );
// Read single image frame of specified size into current object
void read ( const Geometry &size_,
const std::string &imageSpec_ );
// Read single image frame from in-memory BLOB
void read ( const Blob &blob_ );
// Read single image frame of specified size from in-memory BLOB
void read ( const Blob &blob_,
const Geometry &size_ );
// Read single image frame of specified size and depth from
// in-memory BLOB
void read ( const Blob &blob_,
const Geometry &size_,
const size_t depth_ );
// Read single image frame of specified size, depth, and format
// from in-memory BLOB
void read ( const Blob &blob_,
const Geometry &size_,
const size_t depth_,
const std::string &magick_ );
// Read single image frame of specified size, and format from
// in-memory BLOB
void read ( const Blob &blob_,
const Geometry &size_,
const std::string &magick_ );
// Read single image frame from an array of raw pixels, with
// specified storage type (ConstituteImage), e.g.
// image.read( 640, 480, "RGB", 0, pixels );
void read ( const size_t width_,
const size_t height_,
const std::string &map_,
const StorageType type_,
const void *pixels_ );
// Reduce noise in image using a noise peak elimination filter
void reduceNoise ( void );
void reduceNoise ( const double order_ );
// Resize image to specified size.
void resize ( const Geometry &geometry_ );
// Roll image (rolls image vertically and horizontally) by specified
// number of columnms and rows)
void roll ( const Geometry &roll_ );
void roll ( const size_t columns_,
const size_t rows_ );
// Rotate image counter-clockwise by specified number of degrees.
void rotate ( const double degrees_ );
// Resize image by using pixel sampling algorithm
void sample ( const Geometry &geometry_ );
// Resize image by using simple ratio algorithm
void scale ( const Geometry &geometry_ );
// Segment (coalesce similar image components) by analyzing the
// histograms of the color components and identifying units that
// are homogeneous with the fuzzy c-means technique. Also uses
// QuantizeColorSpace and Verbose image attributes
void segment ( const double clusterThreshold_ = 1.0,
const double smoothingThreshold_ = 1.5 );
// Shade image using distant light source
void shade ( const double azimuth_ = 30,
const double elevation_ = 30,
const bool colorShading_ = false );
// Simulate an image shadow
void shadow ( const double percent_opacity_ = 80.0,
const double sigma_ = 0.5,
const ssize_t x_ = 5,
const ssize_t y_ = 5 );
// Sharpen pixels in image
// The radius_ parameter specifies the radius of the Gaussian, in
// pixels, not counting the center pixel. The sigma_ parameter
// specifies the standard deviation of the Laplacian, in pixels.
void sharpen ( const double radius_ = 0.0,
const double sigma_ = 1.0 );
void sharpenChannel ( const ChannelType channel_,
const double radius_ = 0.0,
const double sigma_ = 1.0 );
// Shave pixels from image edges.
void shave ( const Geometry &geometry_ );
// Shear image (create parallelogram by sliding image by X or Y axis)
void shear ( const double xShearAngle_,
const double yShearAngle_ );
// adjust the image contrast with a non-linear sigmoidal contrast algorithm
void sigmoidalContrast ( const size_t sharpen_, const double contrast, const double midpoint = QuantumRange / 2.0 );
// Solarize image (similar to effect seen when exposing a
// photographic film to light during the development process)
void solarize ( const double factor_ = 50.0 );
// Splice the background color into the image.
void splice ( const Geometry &geometry_ );
// Spread pixels randomly within image by specified ammount
void spread ( const size_t amount_ = 3 );
// Sparse color image, given a set of coordinates, interpolates the colors
// found at those coordinates, across the whole image, using various
// methods.
void sparseColor ( const ChannelType channel,
const SparseColorMethod method,
const size_t number_arguments,
const double *arguments );
// Add a digital watermark to the image (based on second image)
void stegano ( const Image &watermark_ );
// Create an image which appears in stereo when viewed with
// red-blue glasses (Red image on left, blue on right)
void stereo ( const Image &rightImage_ );
// Strip strips an image of all profiles and comments.
void strip ( void );
// Swirl image (image pixels are rotated by degrees)
void swirl ( const double degrees_ );
// Channel a texture on image background
void texture ( const Image &texture_ );
// Threshold image
void threshold ( const double threshold_ );
// Transform image based on image and crop geometries
// Crop geometry is optional
void transform ( const Geometry &imageGeometry_ );
void transform ( const Geometry &imageGeometry_,
const Geometry &cropGeometry_ );
// Add matte image to image, setting pixels matching color to
// transparent
void transparent ( const Color &color_ );
// Add matte image to image, for all the pixels that lies in between
// the given two color
void transparentChroma ( const Color &colorLow_, const Color &colorHigh_);
// Trim edges that are the background color from the image
void trim ( void );
// Image representation type (also see type attribute)
// Available types:
// Bilevel Grayscale GrayscaleMatte
// Palette PaletteMatte TrueColor
// TrueColorMatte ColorSeparation ColorSeparationMatte
void type ( const ImageType type_ );
// Replace image with a sharpened version of the original image
// using the unsharp mask algorithm.
// radius_
// the radius of the Gaussian, in pixels, not counting the
// center pixel.
// sigma_
// the standard deviation of the Gaussian, in pixels.
// amount_
// the percentage of the difference between the original and
// the blur image that is added back into the original.
// threshold_
// the threshold in pixels needed to apply the diffence amount.
void unsharpmask ( const double radius_,
const double sigma_,
const double amount_,
const double threshold_ );
void unsharpmaskChannel ( const ChannelType channel_,
const double radius_,
const double sigma_,
const double amount_,
const double threshold_ );
// Map image pixels to a sine wave
void wave ( const double amplitude_ = 25.0,
const double wavelength_ = 150.0 );
// Forces all pixels above the threshold into white while leaving all
// pixels at or below the threshold unchanged.
void whiteThreshold ( const std::string &threshold_ );
void whiteThresholdChannel ( const ChannelType channel_,
const std::string &threshold_ );
// Write single image frame to a file
void write ( const std::string &imageSpec_ );
// Write single image frame to in-memory BLOB, with optional
// format and adjoin parameters.
void write ( Blob *blob_ );
void write ( Blob *blob_,
const std::string &magick_ );
void write ( Blob *blob_,
const std::string &magick_,
const size_t depth_ );
// Write single image frame to an array of pixels with storage
// type specified by user (DispatchImage), e.g.
// image.write( 0, 0, 640, 1, "RGB", 0, pixels );
void write ( const ::ssize_t x_,
const ::ssize_t y_,
const size_t columns_,
const size_t rows_,
const std::string& map_,
const StorageType type_,
void *pixels_ );
// Zoom image to specified size.
void zoom ( const Geometry &geometry_ );
//////////////////////////////////////////////////////////////////////
//
// Image Attributes and Options
//
//////////////////////////////////////////////////////////////////////
// Join images into a single multi-image file
void adjoin ( const bool flag_ );
bool adjoin ( void ) const;
// Anti-alias Postscript and TrueType fonts (default true)
void antiAlias( const bool flag_ );
bool antiAlias( void );
// Time in 1/100ths of a second which must expire before
// displaying the next image in an animated sequence.
void animationDelay ( const size_t delay_ );
size_t animationDelay ( void ) const;
// Number of iterations to loop an animation (e.g. Netscape loop
// extension) for.
void animationIterations ( const size_t iterations_ );
size_t animationIterations ( void ) const;
// Access/Update a named image attribute
void attribute ( const std::string name_,
const std::string value_ );
std::string attribute ( const std::string name_ );
// Image background color
void backgroundColor ( const Color &color_ );
Color backgroundColor ( void ) const;
// Name of texture image to tile onto the image background
void backgroundTexture (const std::string &backgroundTexture_ );
std::string backgroundTexture ( void ) const;
// Base image width (before transformations)
size_t baseColumns ( void ) const;
// Base image filename (before transformations)
std::string baseFilename ( void ) const;
// Base image height (before transformations)
size_t baseRows ( void ) const;
// Image border color
void borderColor ( const Color &color_ );
Color borderColor ( void ) const;
// Return smallest bounding box enclosing non-border pixels. The
// current fuzz value is used when discriminating between pixels.
// This is the crop bounding box used by crop(Geometry(0,0));
Geometry boundingBox ( void ) const;
// Text bounding-box base color (default none)
void boxColor ( const Color &boxColor_ );
Color boxColor ( void ) const;
// Pixel cache threshold in bytes. Once this memory threshold
// is exceeded, all subsequent pixels cache operations are to/from
// disk. This setting is shared by all Image objects.
static void cacheThreshold ( const size_t threshold_ );
// Chromaticity blue primary point (e.g. x=0.15, y=0.06)
void chromaBluePrimary ( const double x_, const double y_ );
void chromaBluePrimary ( double *x_, double *y_ ) const;
// Chromaticity green primary point (e.g. x=0.3, y=0.6)
void chromaGreenPrimary ( const double x_, const double y_ );
void chromaGreenPrimary ( double *x_, double *y_ ) const;
// Chromaticity red primary point (e.g. x=0.64, y=0.33)
void chromaRedPrimary ( const double x_, const double y_ );
void chromaRedPrimary ( double *x_, double *y_ ) const;
// Chromaticity white point (e.g. x=0.3127, y=0.329)
void chromaWhitePoint ( const double x_, const double y_ );