-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWriteableBitmapEx.Wpf.XML
1279 lines (1279 loc) · 86.9 KB
/
WriteableBitmapEx.Wpf.XML
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
<?xml version="1.0"?>
<doc>
<assembly>
<name>WriteableBitmapEx.Wpf</name>
</assembly>
<members>
<member name="T:System.Windows.Media.Imaging.WriteableBitmapExtensions">
<summary>
Collection of extension methods for the WriteableBitmap class.
</summary>
<summary>
Collection of blit (copy) extension methods for the WriteableBitmap class.
</summary>
<summary>
Collection of interchange extension methods for the WriteableBitmap class.
</summary>
<summary>
Collection of extension methods for the WriteableBitmap class.
</summary>
<summary>
Collection of filter / convolution extension methods for the WriteableBitmap class.
</summary>
<summary>
Collection of extension methods for the WriteableBitmap class.
</summary>
<summary>
Collection of draw spline extension methods for the WriteableBitmap class.
</summary>
<summary>
Collection of transformation extension methods for the WriteableBitmap class.
</summary>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.Clear(System.Windows.Media.Imaging.WriteableBitmap,System.Windows.Media.Color)">
<summary>
Fills the whole WriteableBitmap with a color.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="color">The color used for filling.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.Clear(System.Windows.Media.Imaging.WriteableBitmap)">
<summary>
Fills the whole WriteableBitmap with an empty color (0).
</summary>
<param name="bmp">The WriteableBitmap.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.Clone(System.Windows.Media.Imaging.WriteableBitmap)">
<summary>
Clones the specified WriteableBitmap.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<returns>A copy of the WriteableBitmap.</returns>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.ForEach(System.Windows.Media.Imaging.WriteableBitmap,System.Func{System.Int32,System.Int32,System.Windows.Media.Color})">
<summary>
Applies the given function to all the pixels of the bitmap in
order to set their color.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="func">The function to apply. With parameters x, y and a color as a result</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.ForEach(System.Windows.Media.Imaging.WriteableBitmap,System.Func{System.Int32,System.Int32,System.Windows.Media.Color,System.Windows.Media.Color})">
<summary>
Applies the given function to all the pixels of the bitmap in
order to set their color.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="func">The function to apply. With parameters x, y, source color and a color as a result</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.GetPixeli(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32)">
<summary>
Gets the color of the pixel at the x, y coordinate as integer.
For best performance this method should not be used in iterative real-time scenarios. Implement the code directly inside a loop.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x">The x coordinate of the pixel.</param>
<param name="y">The y coordinate of the pixel.</param>
<returns>The color of the pixel at x, y.</returns>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.GetPixel(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32)">
<summary>
Gets the color of the pixel at the x, y coordinate as a Color struct.
For best performance this method should not be used in iterative real-time scenarios. Implement the code directly inside a loop.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x">The x coordinate of the pixel.</param>
<param name="y">The y coordinate of the pixel.</param>
<returns>The color of the pixel at x, y as a Color struct.</returns>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.GetBrightness(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32)">
<summary>
Gets the brightness / luminance of the pixel at the x, y coordinate as byte.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x">The x coordinate of the pixel.</param>
<param name="y">The y coordinate of the pixel.</param>
<returns>The brightness of the pixel at x, y.</returns>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.SetPixeli(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Byte,System.Byte,System.Byte)">
<summary>
Sets the color of the pixel using a precalculated index (faster).
For best performance this method should not be used in iterative real-time scenarios. Implement the code directly inside a loop.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="index">The coordinate index.</param>
<param name="r">The red value of the color.</param>
<param name="g">The green value of the color.</param>
<param name="b">The blue value of the color.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.SetPixel(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Byte,System.Byte,System.Byte)">
<summary>
Sets the color of the pixel.
For best performance this method should not be used in iterative real-time scenarios. Implement the code directly inside a loop.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x">The x coordinate (row).</param>
<param name="y">The y coordinate (column).</param>
<param name="r">The red value of the color.</param>
<param name="g">The green value of the color.</param>
<param name="b">The blue value of the color.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.SetPixeli(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Byte,System.Byte,System.Byte,System.Byte)">
<summary>
Sets the color of the pixel including the alpha value and using a precalculated index (faster).
For best performance this method should not be used in iterative real-time scenarios. Implement the code directly inside a loop.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="index">The coordinate index.</param>
<param name="a">The alpha value of the color.</param>
<param name="r">The red value of the color.</param>
<param name="g">The green value of the color.</param>
<param name="b">The blue value of the color.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.SetPixel(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Byte,System.Byte,System.Byte,System.Byte)">
<summary>
Sets the color of the pixel including the alpha value.
For best performance this method should not be used in iterative real-time scenarios. Implement the code directly inside a loop.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x">The x coordinate (row).</param>
<param name="y">The y coordinate (column).</param>
<param name="a">The alpha value of the color.</param>
<param name="r">The red value of the color.</param>
<param name="g">The green value of the color.</param>
<param name="b">The blue value of the color.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.SetPixeli(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Windows.Media.Color)">
<summary>
Sets the color of the pixel using a precalculated index (faster).
For best performance this method should not be used in iterative real-time scenarios. Implement the code directly inside a loop.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="index">The coordinate index.</param>
<param name="color">The color.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.SetPixel(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Windows.Media.Color)">
<summary>
Sets the color of the pixel.
For best performance this method should not be used in iterative real-time scenarios. Implement the code directly inside a loop.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x">The x coordinate (row).</param>
<param name="y">The y coordinate (column).</param>
<param name="color">The color.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.SetPixeli(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Byte,System.Windows.Media.Color)">
<summary>
Sets the color of the pixel using an extra alpha value and a precalculated index (faster).
For best performance this method should not be used in iterative real-time scenarios. Implement the code directly inside a loop.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="index">The coordinate index.</param>
<param name="a">The alpha value of the color.</param>
<param name="color">The color.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.SetPixel(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Byte,System.Windows.Media.Color)">
<summary>
Sets the color of the pixel using an extra alpha value.
For best performance this method should not be used in iterative real-time scenarios. Implement the code directly inside a loop.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x">The x coordinate (row).</param>
<param name="y">The y coordinate (column).</param>
<param name="a">The alpha value of the color.</param>
<param name="color">The color.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.SetPixeli(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32)">
<summary>
Sets the color of the pixel using a precalculated index (faster).
For best performance this method should not be used in iterative real-time scenarios. Implement the code directly inside a loop.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="index">The coordinate index.</param>
<param name="color">The color.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.SetPixel(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32)">
<summary>
Sets the color of the pixel.
For best performance this method should not be used in iterative real-time scenarios. Implement the code directly inside a loop.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x">The x coordinate (row).</param>
<param name="y">The y coordinate (column).</param>
<param name="color">The color.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.Blit(System.Windows.Media.Imaging.WriteableBitmap,System.Windows.Rect,System.Windows.Media.Imaging.WriteableBitmap,System.Windows.Rect,System.Windows.Media.Imaging.WriteableBitmapExtensions.BlendMode)">
<summary>
Copies (blits) the pixels from the WriteableBitmap source to the destination WriteableBitmap (this).
</summary>
<param name="bmp">The destination WriteableBitmap.</param>
<param name="destRect">The rectangle that defines the destination region.</param>
<param name="source">The source WriteableBitmap.</param>
<param name="sourceRect">The rectangle that will be copied from the source to the destination.</param>
<param name="BlendMode">The blending mode <see cref="T:System.Windows.Media.Imaging.WriteableBitmapExtensions.BlendMode"/>.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.Blit(System.Windows.Media.Imaging.WriteableBitmap,System.Windows.Rect,System.Windows.Media.Imaging.WriteableBitmap,System.Windows.Rect)">
<summary>
Copies (blits) the pixels from the WriteableBitmap source to the destination WriteableBitmap (this).
</summary>
<param name="bmp">The destination WriteableBitmap.</param>
<param name="destRect">The rectangle that defines the destination region.</param>
<param name="source">The source WriteableBitmap.</param>
<param name="sourceRect">The rectangle that will be copied from the source to the destination.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.Blit(System.Windows.Media.Imaging.WriteableBitmap,System.Windows.Point,System.Windows.Media.Imaging.WriteableBitmap,System.Windows.Rect,System.Windows.Media.Color,System.Windows.Media.Imaging.WriteableBitmapExtensions.BlendMode)">
<summary>
Copies (blits) the pixels from the WriteableBitmap source to the destination WriteableBitmap (this).
</summary>
<param name="bmp">The destination WriteableBitmap.</param>
<param name="destPosition">The destination position in the destination bitmap.</param>
<param name="source">The source WriteableBitmap.</param>
<param name="sourceRect">The rectangle that will be copied from the source to the destination.</param>
<param name="color">If not Colors.White, will tint the source image. A partially transparent color and the image will be drawn partially transparent.</param>
<param name="BlendMode">The blending mode <see cref="T:System.Windows.Media.Imaging.WriteableBitmapExtensions.BlendMode"/>.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.Blit(System.Windows.Media.Imaging.WriteableBitmap,System.Windows.Rect,System.Windows.Media.Imaging.WriteableBitmap,System.Windows.Rect,System.Windows.Media.Color,System.Windows.Media.Imaging.WriteableBitmapExtensions.BlendMode)">
<summary>
Copies (blits) the pixels from the WriteableBitmap source to the destination WriteableBitmap (this).
</summary>
<param name="bmp">The destination WriteableBitmap.</param>
<param name="destRect">The rectangle that defines the destination region.</param>
<param name="source">The source WriteableBitmap.</param>
<param name="sourceRect">The rectangle that will be copied from the source to the destination.</param>
<param name="color">If not Colors.White, will tint the source image. A partially transparent color and the image will be drawn partially transparent. If the BlendMode is ColorKeying, this color will be used as color key to mask all pixels with this value out.</param>
<param name="BlendMode">The blending mode <see cref="T:System.Windows.Media.Imaging.WriteableBitmapExtensions.BlendMode"/>.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.ToByteArray(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32)">
<summary>
Copies the Pixels from the WriteableBitmap into a ARGB byte array starting at a specific Pixels index.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="offset">The starting Pixels index.</param>
<param name="count">The number of Pixels to copy, -1 for all</param>
<returns>The color buffer as byte ARGB values.</returns>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.ToByteArray(System.Windows.Media.Imaging.WriteableBitmap,System.Int32)">
<summary>
Copies the Pixels from the WriteableBitmap into a ARGB byte array.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="count">The number of pixels to copy.</param>
<returns>The color buffer as byte ARGB values.</returns>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.ToByteArray(System.Windows.Media.Imaging.WriteableBitmap)">
<summary>
Copies all the Pixels from the WriteableBitmap into a ARGB byte array.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<returns>The color buffer as byte ARGB values.</returns>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.FromByteArray(System.Windows.Media.Imaging.WriteableBitmap,System.Byte[],System.Int32,System.Int32)">
<summary>
Copies color information from an ARGB byte array into this WriteableBitmap starting at a specific buffer index.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="offset">The starting index in the buffer.</param>
<param name="count">The number of bytes to copy from the buffer.</param>
<param name="buffer">The color buffer as byte ARGB values.</param>
<returns>The WriteableBitmap that was passed as parameter.</returns>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.FromByteArray(System.Windows.Media.Imaging.WriteableBitmap,System.Byte[],System.Int32)">
<summary>
Copies color information from an ARGB byte array into this WriteableBitmap.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="count">The number of bytes to copy from the buffer.</param>
<param name="buffer">The color buffer as byte ARGB values.</param>
<returns>The WriteableBitmap that was passed as parameter.</returns>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.FromByteArray(System.Windows.Media.Imaging.WriteableBitmap,System.Byte[])">
<summary>
Copies all the color information from an ARGB byte array into this WriteableBitmap.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="buffer">The color buffer as byte ARGB values.</param>
<returns>The WriteableBitmap that was passed as parameter.</returns>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.WriteTga(System.Windows.Media.Imaging.WriteableBitmap,System.IO.Stream)">
<summary>
Writes the WriteableBitmap as a TGA image to a stream.
Used with permission from Nokola: http://nokola.com/blog/post/2010/01/21/Quick-and-Dirty-Output-of-WriteableBitmap-as-TGA-Image.aspx
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="destination">The destination stream.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.FromResource(System.Windows.Media.Imaging.WriteableBitmap,System.String)">
<summary>
Loads an image from the applications resource file and returns a new WriteableBitmap. The passed WriteableBitmap is not used.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="relativePath">Only the relative path to the resource file. The assembly name is retrieved automatically.</param>
<returns>A new WriteableBitmap containing the pixel data.</returns>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.FromContent(System.Windows.Media.Imaging.WriteableBitmap,System.String)">
<summary>
Loads an image from the applications content and returns a new WriteableBitmap. The passed WriteableBitmap is not used.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="relativePath">Only the relative path to the content file.</param>
<returns>A new WriteableBitmap containing the pixel data.</returns>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.FromStream(System.Windows.Media.Imaging.WriteableBitmap,System.IO.Stream)">
<summary>
Loads the data from an image stream and returns a new WriteableBitmap. The passed WriteableBitmap is not used.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="stream">The stream with the image data.</param>
<returns>A new WriteableBitmap containing the pixel data.</returns>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.FillRectangle(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Media.Color)">
<summary>
Draws a filled rectangle.
x2 has to be greater than x1 and y2 has to be greater than y1.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the bounding rectangle's left side.</param>
<param name="y1">The y-coordinate of the bounding rectangle's top side.</param>
<param name="x2">The x-coordinate of the bounding rectangle's right side.</param>
<param name="y2">The y-coordinate of the bounding rectangle's bottom side.</param>
<param name="color">The color.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.FillRectangle(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Draws a filled rectangle.
x2 has to be greater than x1 and y2 has to be greater than y1.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the bounding rectangle's left side.</param>
<param name="y1">The y-coordinate of the bounding rectangle's top side.</param>
<param name="x2">The x-coordinate of the bounding rectangle's right side.</param>
<param name="y2">The y-coordinate of the bounding rectangle's bottom side.</param>
<param name="color">The color.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.FillEllipse(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Media.Color)">
<summary>
A Fast Bresenham Type Algorithm For Drawing filled ellipses http://homepage.smc.edu/kennedy_john/belipse.pdf
x2 has to be greater than x1 and y2 has to be greater than y1.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the bounding rectangle's left side.</param>
<param name="y1">The y-coordinate of the bounding rectangle's top side.</param>
<param name="x2">The x-coordinate of the bounding rectangle's right side.</param>
<param name="y2">The y-coordinate of the bounding rectangle's bottom side.</param>
<param name="color">The color for the line.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.FillEllipse(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
A Fast Bresenham Type Algorithm For Drawing filled ellipses http://homepage.smc.edu/kennedy_john/belipse.pdf
x2 has to be greater than x1 and y2 has to be greater than y1.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the bounding rectangle's left side.</param>
<param name="y1">The y-coordinate of the bounding rectangle's top side.</param>
<param name="x2">The x-coordinate of the bounding rectangle's right side.</param>
<param name="y2">The y-coordinate of the bounding rectangle's bottom side.</param>
<param name="color">The color for the line.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.FillEllipseCentered(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Media.Color)">
<summary>
A Fast Bresenham Type Algorithm For Drawing filled ellipses http://homepage.smc.edu/kennedy_john/belipse.pdf
Uses a different parameter representation than DrawEllipse().
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="xc">The x-coordinate of the ellipses center.</param>
<param name="yc">The y-coordinate of the ellipses center.</param>
<param name="xr">The radius of the ellipse in x-direction.</param>
<param name="yr">The radius of the ellipse in y-direction.</param>
<param name="color">The color for the line.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.FillEllipseCentered(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
A Fast Bresenham Type Algorithm For Drawing filled ellipses http://homepage.smc.edu/kennedy_john/belipse.pdf
Uses a different parameter representation than DrawEllipse().
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="xc">The x-coordinate of the ellipses center.</param>
<param name="yc">The y-coordinate of the ellipses center.</param>
<param name="xr">The radius of the ellipse in x-direction.</param>
<param name="yr">The radius of the ellipse in y-direction.</param>
<param name="color">The color for the line.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.FillPolygon(System.Windows.Media.Imaging.WriteableBitmap,System.Int32[],System.Windows.Media.Color)">
<summary>
Draws a filled polygon. Add the first point also at the end of the array if the line should be closed.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="points">The points of the polygon in x and y pairs, therefore the array is interpreted as (x1, y1, x2, y2, ..., xn, yn).</param>
<param name="color">The color for the line.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.FillPolygon(System.Windows.Media.Imaging.WriteableBitmap,System.Int32[],System.Int32)">
<summary>
Draws a filled polygon. Add the first point also at the end of the array if the line should be closed.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="points">The points of the polygon in x and y pairs, therefore the array is interpreted as (x1, y1, x2, y2, ..., xn, yn).</param>
<param name="color">The color for the line.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.FillQuad(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Media.Color)">
<summary>
Draws a filled quad.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the 1st point.</param>
<param name="y1">The y-coordinate of the 1st point.</param>
<param name="x2">The x-coordinate of the 2nd point.</param>
<param name="y2">The y-coordinate of the 2nd point.</param>
<param name="x3">The x-coordinate of the 3rd point.</param>
<param name="y3">The y-coordinate of the 3rd point.</param>
<param name="x4">The x-coordinate of the 4th point.</param>
<param name="y4">The y-coordinate of the 4th point.</param>
<param name="color">The color.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.FillQuad(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Draws a filled quad.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the 1st point.</param>
<param name="y1">The y-coordinate of the 1st point.</param>
<param name="x2">The x-coordinate of the 2nd point.</param>
<param name="y2">The y-coordinate of the 2nd point.</param>
<param name="x3">The x-coordinate of the 3rd point.</param>
<param name="y3">The y-coordinate of the 3rd point.</param>
<param name="x4">The x-coordinate of the 4th point.</param>
<param name="y4">The y-coordinate of the 4th point.</param>
<param name="color">The color.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.FillTriangle(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Media.Color)">
<summary>
Draws a filled triangle.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the 1st point.</param>
<param name="y1">The y-coordinate of the 1st point.</param>
<param name="x2">The x-coordinate of the 2nd point.</param>
<param name="y2">The y-coordinate of the 2nd point.</param>
<param name="x3">The x-coordinate of the 3rd point.</param>
<param name="y3">The y-coordinate of the 3rd point.</param>
<param name="color">The color.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.FillTriangle(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Draws a filled triangle.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the 1st point.</param>
<param name="y1">The y-coordinate of the 1st point.</param>
<param name="x2">The x-coordinate of the 2nd point.</param>
<param name="y2">The y-coordinate of the 2nd point.</param>
<param name="x3">The x-coordinate of the 3rd point.</param>
<param name="y3">The y-coordinate of the 3rd point.</param>
<param name="color">The color.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.ComputeBezierPoints(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Media.Imaging.BitmapContext,System.Int32,System.Int32)">
<summary>
Draws a filled, cubic Beziér spline defined by start, end and two control points.
</summary>
<param name="x1">The x-coordinate of the start point.</param>
<param name="y1">The y-coordinate of the start point.</param>
<param name="cx1">The x-coordinate of the 1st control point.</param>
<param name="cy1">The y-coordinate of the 1st control point.</param>
<param name="cx2">The x-coordinate of the 2nd control point.</param>
<param name="cy2">The y-coordinate of the 2nd control point.</param>
<param name="x2">The x-coordinate of the end point.</param>
<param name="y2">The y-coordinate of the end point.</param>
<param name="color">The color.</param>
<param name="context">The context with the pixels.</param>
<param name="w">The width of the bitmap.</param>
<param name="h">The height of the bitmap.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.FillBeziers(System.Windows.Media.Imaging.WriteableBitmap,System.Int32[],System.Windows.Media.Color)">
<summary>
Draws a series of filled, cubic Beziér splines each defined by start, end and two control points.
The ending point of the previous curve is used as starting point for the next.
Therfore the inital curve needs four points and the subsequent 3 (2 control and 1 end point).
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="points">The points for the curve in x and y pairs, therefore the array is interpreted as (x1, y1, cx1, cy1, cx2, cy2, x2, y2, cx3, cx4 ..., xn, yn).</param>
<param name="color">The color for the spline.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.FillBeziers(System.Windows.Media.Imaging.WriteableBitmap,System.Int32[],System.Int32)">
<summary>
Draws a series of filled, cubic Beziér splines each defined by start, end and two control points.
The ending point of the previous curve is used as starting point for the next.
Therfore the inital curve needs four points and the subsequent 3 (2 control and 1 end point).
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="points">The points for the curve in x and y pairs, therefore the array is interpreted as (x1, y1, cx1, cy1, cx2, cy2, x2, y2, cx3, cx4 ..., xn, yn).</param>
<param name="color">The color for the spline.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.ComputeSegmentPoints(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Single,System.Int32,System.Windows.Media.Imaging.BitmapContext,System.Int32,System.Int32)">
<summary>
Computes the discrete segment points of a Cardinal spline (cubic) defined by four control points.
</summary>
<param name="x1">The x-coordinate of the 1st control point.</param>
<param name="y1">The y-coordinate of the 1st control point.</param>
<param name="x2">The x-coordinate of the 2nd control point.</param>
<param name="y2">The y-coordinate of the 2nd control point.</param>
<param name="x3">The x-coordinate of the 3rd control point.</param>
<param name="y3">The y-coordinate of the 3rd control point.</param>
<param name="x4">The x-coordinate of the 4th control point.</param>
<param name="y4">The y-coordinate of the 4th control point.</param>
<param name="tension">The tension of the curve defines the shape. Usually between 0 and 1. 0 would be a straight line.</param>
<param name="color">The color.</param>
<param name="context">The context with the pixels.</param>
<param name="w">The width of the bitmap.</param>
<param name="h">The height of the bitmap.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.FillCurve(System.Windows.Media.Imaging.WriteableBitmap,System.Int32[],System.Single,System.Windows.Media.Color)">
<summary>
Draws a filled Cardinal spline (cubic) defined by a point collection.
The cardinal spline passes through each point in the collection.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="points">The points for the curve in x and y pairs, therefore the array is interpreted as (x1, y1, x2, y2, x3, y3, x4, y4, x1, x2 ..., xn, yn).</param>
<param name="tension">The tension of the curve defines the shape. Usually between 0 and 1. 0 would be a straight line.</param>
<param name="color">The color for the spline.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.FillCurve(System.Windows.Media.Imaging.WriteableBitmap,System.Int32[],System.Single,System.Int32)">
<summary>
Draws a filled Cardinal spline (cubic) defined by a point collection.
The cardinal spline passes through each point in the collection.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="points">The points for the curve in x and y pairs, therefore the array is interpreted as (x1, y1, x2, y2, x3, y3, x4, y4, x1, x2 ..., xn, yn).</param>
<param name="tension">The tension of the curve defines the shape. Usually between 0 and 1. 0 would be a straight line.</param>
<param name="color">The color for the spline.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.FillCurveClosed(System.Windows.Media.Imaging.WriteableBitmap,System.Int32[],System.Single,System.Windows.Media.Color)">
<summary>
Draws a filled, closed Cardinal spline (cubic) defined by a point collection.
The cardinal spline passes through each point in the collection.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="points">The points for the curve in x and y pairs, therefore the array is interpreted as (x1, y1, x2, y2, x3, y3, x4, y4, x1, x2 ..., xn, yn).</param>
<param name="tension">The tension of the curve defines the shape. Usually between 0 and 1. 0 would be a straight line.</param>
<param name="color">The color for the spline.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.FillCurveClosed(System.Windows.Media.Imaging.WriteableBitmap,System.Int32[],System.Single,System.Int32)">
<summary>
Draws a filled, closed Cardinal spline (cubic) defined by a point collection.
The cardinal spline passes through each point in the collection.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="points">The points for the curve in x and y pairs, therefore the array is interpreted as (x1, y1, x2, y2, x3, y3, x4, y4, x1, x2 ..., xn, yn).</param>
<param name="tension">The tension of the curve defines the shape. Usually between 0 and 1. 0 would be a straight line.</param>
<param name="color">The color for the spline.</param>
</member>
<member name="F:System.Windows.Media.Imaging.WriteableBitmapExtensions.KernelGaussianBlur5x5">
<summary>
Gaussian blur kernel with the size 5x5
</summary>
</member>
<member name="F:System.Windows.Media.Imaging.WriteableBitmapExtensions.KernelGaussianBlur3x3">
<summary>
Gaussian blur kernel with the size 3x3
</summary>
</member>
<member name="F:System.Windows.Media.Imaging.WriteableBitmapExtensions.KernelSharpen3x3">
<summary>
Sharpen kernel with the size 3x3
</summary>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.Convolute(System.Windows.Media.Imaging.WriteableBitmap,System.Int32[0:,0:])">
<summary>
Creates a new filtered WriteableBitmap.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="kernel">The kernel used for convolution.</param>
<returns>A new WriteableBitmap that is a filtered version of the input.</returns>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.Convolute(System.Windows.Media.Imaging.WriteableBitmap,System.Int32[0:,0:],System.Int32,System.Int32)">
<summary>
Creates a new filtered WriteableBitmap.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="kernel">The kernel used for convolution.</param>
<param name="kernelFactorSum">The factor used for the kernel summing.</param>
<param name="kernelOffsetSum">The offset used for the kernel summing.</param>
<returns>A new WriteableBitmap that is a filtered version of the input.</returns>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.Invert(System.Windows.Media.Imaging.WriteableBitmap)">
<summary>
Creates a new inverted WriteableBitmap and returns it.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<returns>The new inverted WriteableBitmap.</returns>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawLineBresenham(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Media.Color)">
<summary>
Draws a colored line by connecting two points using the Bresenham algorithm.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the start point.</param>
<param name="y1">The y-coordinate of the start point.</param>
<param name="x2">The x-coordinate of the end point.</param>
<param name="y2">The y-coordinate of the end point.</param>
<param name="color">The color for the line.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawLineBresenham(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Draws a colored line by connecting two points using the Bresenham algorithm.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the start point.</param>
<param name="y1">The y-coordinate of the start point.</param>
<param name="x2">The x-coordinate of the end point.</param>
<param name="y2">The y-coordinate of the end point.</param>
<param name="color">The color for the line.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawLineDDA(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Media.Color)">
<summary>
Draws a colored line by connecting two points using a DDA algorithm (Digital Differential Analyzer).
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the start point.</param>
<param name="y1">The y-coordinate of the start point.</param>
<param name="x2">The x-coordinate of the end point.</param>
<param name="y2">The y-coordinate of the end point.</param>
<param name="color">The color for the line.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawLineDDA(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Draws a colored line by connecting two points using a DDA algorithm (Digital Differential Analyzer).
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the start point.</param>
<param name="y1">The y-coordinate of the start point.</param>
<param name="x2">The x-coordinate of the end point.</param>
<param name="y2">The y-coordinate of the end point.</param>
<param name="color">The color for the line.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawLine(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Media.Color)">
<summary>
Draws a colored line by connecting two points using an optimized DDA.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the start point.</param>
<param name="y1">The y-coordinate of the start point.</param>
<param name="x2">The x-coordinate of the end point.</param>
<param name="y2">The y-coordinate of the end point.</param>
<param name="color">The color for the line.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawLine(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Draws a colored line by connecting two points using an optimized DDA.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the start point.</param>
<param name="y1">The y-coordinate of the start point.</param>
<param name="x2">The x-coordinate of the end point.</param>
<param name="y2">The y-coordinate of the end point.</param>
<param name="color">The color for the line.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawLine(System.Windows.Media.Imaging.BitmapContext,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Draws a colored line by connecting two points using an optimized DDA.
Uses the pixels array and the width directly for best performance.
</summary>
<param name="context">The context containing the pixels as int RGBA value.</param>
<param name="pixelWidth">The width of one scanline in the pixels array.</param>
<param name="pixelHeight">The height of the bitmap.</param>
<param name="x1">The x-coordinate of the start point.</param>
<param name="y1">The y-coordinate of the start point.</param>
<param name="x2">The x-coordinate of the end point.</param>
<param name="y2">The y-coordinate of the end point.</param>
<param name="color">The color for the line.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawLineAa(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Media.Color)">
<summary>
Draws an anti-aliased line, using an optimized version of Gupta-Sproull algorithm
From http://nokola.com/blog/post/2010/10/14/Anti-aliased-Lines-And-Optimizing-Code-for-Windows-Phone-7e28093First-Look.aspx
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the start point.</param>
<param name="y1">The y-coordinate of the start point.</param>
<param name="x2">The x-coordinate of the end point.</param>
<param name="y2">The y-coordinate of the end point.</param>
<param name="color">The color for the line.</param>
</summary>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawLineAa(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Draws an anti-aliased line, using an optimized version of Gupta-Sproull algorithm
From http://nokola.com/blog/post/2010/10/14/Anti-aliased-Lines-And-Optimizing-Code-for-Windows-Phone-7e28093First-Look.aspx
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the start point.</param>
<param name="y1">The y-coordinate of the start point.</param>
<param name="x2">The x-coordinate of the end point.</param>
<param name="y2">The y-coordinate of the end point.</param>
<param name="color">The color for the line.</param>
</summary>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawLineAa(System.Windows.Media.Imaging.BitmapContext,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Draws an anti-aliased line, using an optimized version of Gupta-Sproull algorithm
From http://nokola.com/blog/post/2010/10/14/Anti-aliased-Lines-And-Optimizing-Code-for-Windows-Phone-7e28093First-Look.aspx
<param name="context">The context containing the pixels as int RGBA value.</param>
<param name="pixelWidth">The width of one scanline in the pixels array.</param>
<param name="pixelHeight">The height of the bitmap.</param>
<param name="x1">The x-coordinate of the start point.</param>
<param name="y1">The y-coordinate of the start point.</param>
<param name="x2">The x-coordinate of the end point.</param>
<param name="y2">The y-coordinate of the end point.</param>
<param name="color">The color for the line.</param>
</summary>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.AlphaBlendNormalOnPremultiplied(System.Windows.Media.Imaging.BitmapContext,System.Int32,System.Int32,System.UInt32,System.UInt32)">
<summary>
Blends a specific source color on top of a destination premultiplied color
</summary>
<param name="context">Array containing destination color</param>
<param name="index">Index of destination pixel</param>
<param name="sa">Source alpha (0..255)</param>
<param name="srb">Source non-premultiplied red and blue component in the format 0x00rr00bb</param>
<param name="sg">Source green component (0..255)</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawPolyline(System.Windows.Media.Imaging.WriteableBitmap,System.Int32[],System.Windows.Media.Color)">
<summary>
Draws a polyline. Add the first point also at the end of the array if the line should be closed.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="points">The points of the polyline in x and y pairs, therefore the array is interpreted as (x1, y1, x2, y2, ..., xn, yn).</param>
<param name="color">The color for the line.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawPolyline(System.Windows.Media.Imaging.WriteableBitmap,System.Int32[],System.Int32)">
<summary>
Draws a polyline. Add the first point also at the end of the array if the line should be closed.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="points">The points of the polyline in x and y pairs, therefore the array is interpreted as (x1, y1, x2, y2, ..., xn, yn).</param>
<param name="color">The color for the line.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawTriangle(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Media.Color)">
<summary>
Draws a triangle.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the 1st point.</param>
<param name="y1">The y-coordinate of the 1st point.</param>
<param name="x2">The x-coordinate of the 2nd point.</param>
<param name="y2">The y-coordinate of the 2nd point.</param>
<param name="x3">The x-coordinate of the 3rd point.</param>
<param name="y3">The y-coordinate of the 3rd point.</param>
<param name="color">The color.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawTriangle(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Draws a triangle.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the 1st point.</param>
<param name="y1">The y-coordinate of the 1st point.</param>
<param name="x2">The x-coordinate of the 2nd point.</param>
<param name="y2">The y-coordinate of the 2nd point.</param>
<param name="x3">The x-coordinate of the 3rd point.</param>
<param name="y3">The y-coordinate of the 3rd point.</param>
<param name="color">The color.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawQuad(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Media.Color)">
<summary>
Draws a quad.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the 1st point.</param>
<param name="y1">The y-coordinate of the 1st point.</param>
<param name="x2">The x-coordinate of the 2nd point.</param>
<param name="y2">The y-coordinate of the 2nd point.</param>
<param name="x3">The x-coordinate of the 3rd point.</param>
<param name="y3">The y-coordinate of the 3rd point.</param>
<param name="x4">The x-coordinate of the 4th point.</param>
<param name="y4">The y-coordinate of the 4th point.</param>
<param name="color">The color.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawQuad(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Draws a quad.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the 1st point.</param>
<param name="y1">The y-coordinate of the 1st point.</param>
<param name="x2">The x-coordinate of the 2nd point.</param>
<param name="y2">The y-coordinate of the 2nd point.</param>
<param name="x3">The x-coordinate of the 3rd point.</param>
<param name="y3">The y-coordinate of the 3rd point.</param>
<param name="x4">The x-coordinate of the 4th point.</param>
<param name="y4">The y-coordinate of the 4th point.</param>
<param name="color">The color.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawRectangle(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Media.Color)">
<summary>
Draws a rectangle.
x2 has to be greater than x1 and y2 has to be greater than y1.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the bounding rectangle's left side.</param>
<param name="y1">The y-coordinate of the bounding rectangle's top side.</param>
<param name="x2">The x-coordinate of the bounding rectangle's right side.</param>
<param name="y2">The y-coordinate of the bounding rectangle's bottom side.</param>
<param name="color">The color.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawRectangle(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Draws a rectangle.
x2 has to be greater than x1 and y2 has to be greater than y1.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the bounding rectangle's left side.</param>
<param name="y1">The y-coordinate of the bounding rectangle's top side.</param>
<param name="x2">The x-coordinate of the bounding rectangle's right side.</param>
<param name="y2">The y-coordinate of the bounding rectangle's bottom side.</param>
<param name="color">The color.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawEllipse(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Media.Color)">
<summary>
A Fast Bresenham Type Algorithm For Drawing Ellipses http://homepage.smc.edu/kennedy_john/belipse.pdf
x2 has to be greater than x1 and y2 has to be greater than y1.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the bounding rectangle's left side.</param>
<param name="y1">The y-coordinate of the bounding rectangle's top side.</param>
<param name="x2">The x-coordinate of the bounding rectangle's right side.</param>
<param name="y2">The y-coordinate of the bounding rectangle's bottom side.</param>
<param name="color">The color for the line.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawEllipse(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
A Fast Bresenham Type Algorithm For Drawing Ellipses http://homepage.smc.edu/kennedy_john/belipse.pdf
x2 has to be greater than x1 and y2 has to be greater than y1.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the bounding rectangle's left side.</param>
<param name="y1">The y-coordinate of the bounding rectangle's top side.</param>
<param name="x2">The x-coordinate of the bounding rectangle's right side.</param>
<param name="y2">The y-coordinate of the bounding rectangle's bottom side.</param>
<param name="color">The color for the line.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawEllipseCentered(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Media.Color)">
<summary>
A Fast Bresenham Type Algorithm For Drawing Ellipses http://homepage.smc.edu/kennedy_john/belipse.pdf
Uses a different parameter representation than DrawEllipse().
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="xc">The x-coordinate of the ellipses center.</param>
<param name="yc">The y-coordinate of the ellipses center.</param>
<param name="xr">The radius of the ellipse in x-direction.</param>
<param name="yr">The radius of the ellipse in y-direction.</param>
<param name="color">The color for the line.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawEllipseCentered(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
A Fast Bresenham Type Algorithm For Drawing Ellipses http://homepage.smc.edu/kennedy_john/belipse.pdf
Uses a different parameter representation than DrawEllipse().
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="xc">The x-coordinate of the ellipses center.</param>
<param name="yc">The y-coordinate of the ellipses center.</param>
<param name="xr">The radius of the ellipse in x-direction.</param>
<param name="yr">The radius of the ellipse in y-direction.</param>
<param name="color">The color for the line.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawBezier(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Media.Color)">
<summary>
Draws a cubic Beziér spline defined by start, end and two control points.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the start point.</param>
<param name="y1">The y-coordinate of the start point.</param>
<param name="cx1">The x-coordinate of the 1st control point.</param>
<param name="cy1">The y-coordinate of the 1st control point.</param>
<param name="cx2">The x-coordinate of the 2nd control point.</param>
<param name="cy2">The y-coordinate of the 2nd control point.</param>
<param name="x2">The x-coordinate of the end point.</param>
<param name="y2">The y-coordinate of the end point.</param>
<param name="color">The color.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawBezier(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Draws a cubic Beziér spline defined by start, end and two control points.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x1">The x-coordinate of the start point.</param>
<param name="y1">The y-coordinate of the start point.</param>
<param name="cx1">The x-coordinate of the 1st control point.</param>
<param name="cy1">The y-coordinate of the 1st control point.</param>
<param name="cx2">The x-coordinate of the 2nd control point.</param>
<param name="cy2">The y-coordinate of the 2nd control point.</param>
<param name="x2">The x-coordinate of the end point.</param>
<param name="y2">The y-coordinate of the end point.</param>
<param name="color">The color.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawBeziers(System.Windows.Media.Imaging.WriteableBitmap,System.Int32[],System.Windows.Media.Color)">
<summary>
Draws a series of cubic Beziér splines each defined by start, end and two control points.
The ending point of the previous curve is used as starting point for the next.
Therfore the inital curve needs four points and the subsequent 3 (2 control and 1 end point).
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="points">The points for the curve in x and y pairs, therefore the array is interpreted as (x1, y1, cx1, cy1, cx2, cy2, x2, y2, cx3, cx4 ..., xn, yn).</param>
<param name="color">The color for the spline.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawBeziers(System.Windows.Media.Imaging.WriteableBitmap,System.Int32[],System.Int32)">
<summary>
Draws a series of cubic Beziér splines each defined by start, end and two control points.
The ending point of the previous curve is used as starting point for the next.
Therfore the inital curve needs four points and the subsequent 3 (2 control and 1 end point).
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="points">The points for the curve in x and y pairs, therefore the array is interpreted as (x1, y1, cx1, cy1, cx2, cy2, x2, y2, cx3, cx4 ..., xn, yn).</param>
<param name="color">The color for the spline.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawCurveSegment(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Single,System.Int32,System.Windows.Media.Imaging.BitmapContext,System.Int32,System.Int32)">
<summary>
Draws a segment of a Cardinal spline (cubic) defined by four control points.
</summary>
<param name="x1">The x-coordinate of the 1st control point.</param>
<param name="y1">The y-coordinate of the 1st control point.</param>
<param name="x2">The x-coordinate of the 2nd control point.</param>
<param name="y2">The y-coordinate of the 2nd control point.</param>
<param name="x3">The x-coordinate of the 3rd control point.</param>
<param name="y3">The y-coordinate of the 3rd control point.</param>
<param name="x4">The x-coordinate of the 4th control point.</param>
<param name="y4">The y-coordinate of the 4th control point.</param>
<param name="tension">The tension of the curve defines the shape. Usually between 0 and 1. 0 would be a straight line.</param>
<param name="color">The color.</param>
<param name="context">The pixel context.</param>
<param name="w">The width of the bitmap.</param>
<param name="h">The height of the bitmap.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawCurve(System.Windows.Media.Imaging.WriteableBitmap,System.Int32[],System.Single,System.Windows.Media.Color)">
<summary>
Draws a Cardinal spline (cubic) defined by a point collection.
The cardinal spline passes through each point in the collection.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="points">The points for the curve in x and y pairs, therefore the array is interpreted as (x1, y1, x2, y2, x3, y3, x4, y4, x1, x2 ..., xn, yn).</param>
<param name="tension">The tension of the curve defines the shape. Usually between 0 and 1. 0 would be a straight line.</param>
<param name="color">The color for the spline.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawCurve(System.Windows.Media.Imaging.WriteableBitmap,System.Int32[],System.Single,System.Int32)">
<summary>
Draws a Cardinal spline (cubic) defined by a point collection.
The cardinal spline passes through each point in the collection.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="points">The points for the curve in x and y pairs, therefore the array is interpreted as (x1, y1, x2, y2, x3, y3, x4, y4, x1, x2 ..., xn, yn).</param>
<param name="tension">The tension of the curve defines the shape. Usually between 0 and 1. 0 would be a straight line.</param>
<param name="color">The color for the spline.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawCurveClosed(System.Windows.Media.Imaging.WriteableBitmap,System.Int32[],System.Single,System.Windows.Media.Color)">
<summary>
Draws a closed Cardinal spline (cubic) defined by a point collection.
The cardinal spline passes through each point in the collection.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="points">The points for the curve in x and y pairs, therefore the array is interpreted as (x1, y1, x2, y2, x3, y3, x4, y4, x1, x2 ..., xn, yn).</param>
<param name="tension">The tension of the curve defines the shape. Usually between 0 and 1. 0 would be a straight line.</param>
<param name="color">The color for the spline.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.DrawCurveClosed(System.Windows.Media.Imaging.WriteableBitmap,System.Int32[],System.Single,System.Int32)">
<summary>
Draws a closed Cardinal spline (cubic) defined by a point collection.
The cardinal spline passes through each point in the collection.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="points">The points for the curve in x and y pairs, therefore the array is interpreted as (x1, y1, x2, y2, x3, y3, x4, y4, x1, x2 ..., xn, yn).</param>
<param name="tension">The tension of the curve defines the shape. Usually between 0 and 1. 0 would be a straight line.</param>
<param name="color">The color for the spline.</param>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.Crop(System.Windows.Media.Imaging.WriteableBitmap,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a new cropped WriteableBitmap.
</summary>
<param name="bmp">The WriteableBitmap.</param>
<param name="x">The x coordinate of the rectangle that defines the crop region.</param>
<param name="y">The y coordinate of the rectangle that defines the crop region.</param>
<param name="width">The width of the rectangle that defines the crop region.</param>
<param name="height">The height of the rectangle that defines the crop region.</param>
<returns>A new WriteableBitmap that is a cropped version of the input.</returns>
</member>
<member name="M:System.Windows.Media.Imaging.WriteableBitmapExtensions.Crop(System.Windows.Media.Imaging.WriteableBitmap,System.Windows.Rect)">
<summary>