examples and readme

This commit is contained in:
Thomas Breloff 2015-09-14 00:28:08 -04:00
parent 1410141b46
commit c8fcc373f8
65 changed files with 107 additions and 36 deletions

View File

@ -13,6 +13,7 @@ Please add wishlist items, bugs, or any other comments/questions to the issues l
- [Qwt.jl](docs/qwt_examples.md) - [Qwt.jl](docs/qwt_examples.md)
- [Gadfly.jl](docs/gadfly_examples.md) - [Gadfly.jl](docs/gadfly_examples.md)
- [UnicodePlots.jl](docs/unicodeplots_examples.md) - [UnicodePlots.jl](docs/unicodeplots_examples.md)
- [PyPlot.jl](docs/pyplot_examples.md)
## Installation ## Installation

View File

@ -52,6 +52,9 @@ const examples = PlotExample[
PlotExample("Lots of line types", PlotExample("Lots of line types",
"Options: (:line, :step, :stepinverted, :sticks, :dots, :none, :heatmap, :hexbin, :hist, :bar) \nNote: some may not work with all backends", "Options: (:line, :step, :stepinverted, :sticks, :dots, :none, :heatmap, :hexbin, :hist, :bar) \nNote: some may not work with all backends",
[:(plot(rand(20,4); linetypes=[:line, :step, :sticks, :dots], labels=["line","step","sticks","dots"]))]), [:(plot(rand(20,4); linetypes=[:line, :step, :sticks, :dots], labels=["line","step","sticks","dots"]))]),
PlotExample("Lots of line styles",
"Options: (:solid, :dash, :dot, :dashdot, :dashdotdot) \nNote: some may not work with all backends",
[:(plot(rand(20,5); linestyles=[:solid, :dash, :dot, :dashdot, :dashdotdot], labels=["solid", "dash", "dot", "dashdot", "dashdotdot"]))]),
PlotExample("Lots of marker types", PlotExample("Lots of marker types",
"Options: (:none, :ellipse, :rect, :diamond, :utriangle, :dtriangle, :cross, :xcross, :star1, :star2, :hexagon) \nNote: some may not work with all backends", "Options: (:none, :ellipse, :rect, :diamond, :utriangle, :dtriangle, :cross, :xcross, :star1, :star2, :hexagon) \nNote: some may not work with all backends",
[:(plot(repmat(collect(1:10)',10,1); markers=[:ellipse, :rect, :diamond, :utriangle, :dtriangle, :cross, :xcross, :star1, :star2, :hexagon], [:(plot(repmat(collect(1:10)',10,1); markers=[:ellipse, :rect, :diamond, :utriangle, :dtriangle, :cross, :xcross, :star1, :star2, :hexagon],
@ -128,9 +131,9 @@ end
# run it! # run it!
# note: generate separately so it's easy to comment out # note: generate separately so it's easy to comment out
# generate_markdown(:qwt) generate_markdown(:qwt)
# generate_markdown(:gadfly) generate_markdown(:gadfly)
# generate_markdown(:unicodeplots) generate_markdown(:unicodeplots)
generate_markdown(:pyplot) generate_markdown(:pyplot)

View File

@ -57,7 +57,7 @@ Use the `axis` or `axiss` arguments.
Note: This is only supported with Qwt right now Note: This is only supported with Qwt right now
```julia ```julia
plot(Vector[randn(100),randn(100) * 100]; axiss=[:left,:right]) plot(Vector[randn(100),randn(100) * 100]; axiss=[:left,:right],ylabel="LEFT",yrightlabel="RIGHT")
``` ```
![](../img/gadfly/gadfly_example_6.png) ![](../img/gadfly/gadfly_example_6.png)
@ -72,16 +72,6 @@ plot(Vector[rand(10),rand(20)]; marker=:ellipse,markersize=8,colors=[:red,:blue]
![](../img/gadfly/gadfly_example_7.png) ![](../img/gadfly/gadfly_example_7.png)
### Build plot in pieces
Start with a base plot...
```julia
plot(rand(100) / 3; reg=true,fillto=0)
```
![](../img/gadfly/gadfly_example_8.png)
### ###
and add to it later. and add to it later.
@ -97,7 +87,7 @@ scatter!(rand(100); markersize=6,color=:blue)
```julia ```julia
heatmap(randn(10000),randn(10000); nbins=200) heatmap(randn(10000),randn(10000); nbins=100)
``` ```
![](../img/gadfly/gadfly_example_10.png) ![](../img/gadfly/gadfly_example_10.png)
@ -113,6 +103,28 @@ plot(rand(20,4); linetypes=[:line,:step,:sticks,:dots],labels=["line","step","st
![](../img/gadfly/gadfly_example_11.png) ![](../img/gadfly/gadfly_example_11.png)
### Lots of line styles
Options: (:solid, :dash, :dot, :dashdot, :dashdotdot)
Note: some may not work with all backends
```julia
plot(rand(20,5); linestyles=[:solid,:dash,:dot,:dashdot,:dashdotdot],labels=["solid","dash","dot","dashdot","dashdotdot"])
```
![](../img/gadfly/gadfly_example_12.png)
### Lots of marker types
Options: (:none, :ellipse, :rect, :diamond, :utriangle, :dtriangle, :cross, :xcross, :star1, :star2, :hexagon)
Note: some may not work with all backends
```julia
plot(repmat(collect(1:10)',10,1); markers=[:ellipse,:rect,:diamond,:utriangle,:dtriangle,:cross,:xcross,:star1,:star2,:hexagon],labels=["ellipse","rect","diamond","utriangle","dtriangle","cross","xcross","star1","star2","hexagon"],linetype=:none,markersize=10)
```
![](../img/gadfly/gadfly_example_13.png)
### Bar ### Bar
x is the midpoint of the bar. (todo: allow passing of edges instead of midpoints) x is the midpoint of the bar. (todo: allow passing of edges instead of midpoints)
@ -121,7 +133,7 @@ x is the midpoint of the bar. (todo: allow passing of edges instead of midpoints
bar(randn(1000)) bar(randn(1000))
``` ```
![](../img/gadfly/gadfly_example_12.png) ![](../img/gadfly/gadfly_example_14.png)
### Histogram ### Histogram
@ -131,7 +143,7 @@ note: fillto isn't supported on all backends
histogram(randn(1000); nbins=50,fillto=20) histogram(randn(1000); nbins=50,fillto=20)
``` ```
![](../img/gadfly/gadfly_example_13.png) ![](../img/gadfly/gadfly_example_15.png)
### Subplots ### Subplots
@ -146,7 +158,7 @@ histogram(randn(1000); nbins=50,fillto=20)
subplot(randn(100,5); layout=[1,1,3],linetypes=[:line,:hist,:dots,:step,:bar],nbins=10,legend=false) subplot(randn(100,5); layout=[1,1,3],linetypes=[:line,:hist,:dots,:step,:bar],nbins=10,legend=false)
``` ```
![](../img/gadfly/gadfly_example_14.png) ![](../img/gadfly/gadfly_example_16.png)
### Adding to subplots ### Adding to subplots
@ -156,7 +168,7 @@ Note here the automatic grid layout, as well as the order in which new series ar
subplot(randn(100,5); n=4) subplot(randn(100,5); n=4)
``` ```
![](../img/gadfly/gadfly_example_15.png) ![](../img/gadfly/gadfly_example_17.png)
### ###
@ -166,5 +178,5 @@ subplot(randn(100,5); n=4)
subplot!(randn(100,3)) subplot!(randn(100,3))
``` ```
![](../img/gadfly/gadfly_example_16.png) ![](../img/gadfly/gadfly_example_18.png)

View File

@ -113,6 +113,17 @@ plot(rand(20,4); linetypes=[:line,:step,:sticks,:dots],labels=["line","step","st
![](../img/pyplot/pyplot_example_11.png) ![](../img/pyplot/pyplot_example_11.png)
### Lots of line styles
Options: (:solid, :dash, :dot, :dashdot, :dashdotdot)
Note: some may not work with all backends
```julia
plot(rand(20,5); linestyles=[:solid,:dash,:dot,:dashdot,:dashdotdot],labels=["solid","dash","dot","dashdot","dashdotdot"])
```
![](../img/pyplot/pyplot_example_12.png)
### Lots of marker types ### Lots of marker types
Options: (:none, :ellipse, :rect, :diamond, :utriangle, :dtriangle, :cross, :xcross, :star1, :star2, :hexagon) Options: (:none, :ellipse, :rect, :diamond, :utriangle, :dtriangle, :cross, :xcross, :star1, :star2, :hexagon)
@ -122,7 +133,7 @@ Note: some may not work with all backends
plot(repmat(collect(1:10)',10,1); markers=[:ellipse,:rect,:diamond,:utriangle,:dtriangle,:cross,:xcross,:star1,:star2,:hexagon],labels=["ellipse","rect","diamond","utriangle","dtriangle","cross","xcross","star1","star2","hexagon"],linetype=:none,markersize=10) plot(repmat(collect(1:10)',10,1); markers=[:ellipse,:rect,:diamond,:utriangle,:dtriangle,:cross,:xcross,:star1,:star2,:hexagon],labels=["ellipse","rect","diamond","utriangle","dtriangle","cross","xcross","star1","star2","hexagon"],linetype=:none,markersize=10)
``` ```
![](../img/pyplot/pyplot_example_12.png) ![](../img/pyplot/pyplot_example_13.png)
### Bar ### Bar
@ -132,7 +143,7 @@ x is the midpoint of the bar. (todo: allow passing of edges instead of midpoints
bar(randn(1000)) bar(randn(1000))
``` ```
![](../img/pyplot/pyplot_example_13.png) ![](../img/pyplot/pyplot_example_14.png)
### Histogram ### Histogram
@ -142,5 +153,5 @@ note: fillto isn't supported on all backends
histogram(randn(1000); nbins=50,fillto=20) histogram(randn(1000); nbins=50,fillto=20)
``` ```
![](../img/pyplot/pyplot_example_14.png) ![](../img/pyplot/pyplot_example_15.png)

View File

@ -57,7 +57,7 @@ Use the `axis` or `axiss` arguments.
Note: This is only supported with Qwt right now Note: This is only supported with Qwt right now
```julia ```julia
plot(Vector[randn(100),randn(100) * 100]; axiss=[:left,:right]) plot(Vector[randn(100),randn(100) * 100]; axiss=[:left,:right],ylabel="LEFT",yrightlabel="RIGHT")
``` ```
![](../img/qwt/qwt_example_6.png) ![](../img/qwt/qwt_example_6.png)
@ -97,7 +97,7 @@ scatter!(rand(100); markersize=6,color=:blue)
```julia ```julia
heatmap(randn(10000),randn(10000); nbins=200) heatmap(randn(10000),randn(10000); nbins=100)
``` ```
![](../img/qwt/qwt_example_10.png) ![](../img/qwt/qwt_example_10.png)
@ -113,6 +113,28 @@ plot(rand(20,4); linetypes=[:line,:step,:sticks,:dots],labels=["line","step","st
![](../img/qwt/qwt_example_11.png) ![](../img/qwt/qwt_example_11.png)
### Lots of line styles
Options: (:solid, :dash, :dot, :dashdot, :dashdotdot)
Note: some may not work with all backends
```julia
plot(rand(20,5); linestyles=[:solid,:dash,:dot,:dashdot,:dashdotdot],labels=["solid","dash","dot","dashdot","dashdotdot"])
```
![](../img/qwt/qwt_example_12.png)
### Lots of marker types
Options: (:none, :ellipse, :rect, :diamond, :utriangle, :dtriangle, :cross, :xcross, :star1, :star2, :hexagon)
Note: some may not work with all backends
```julia
plot(repmat(collect(1:10)',10,1); markers=[:ellipse,:rect,:diamond,:utriangle,:dtriangle,:cross,:xcross,:star1,:star2,:hexagon],labels=["ellipse","rect","diamond","utriangle","dtriangle","cross","xcross","star1","star2","hexagon"],linetype=:none,markersize=10)
```
![](../img/qwt/qwt_example_13.png)
### Bar ### Bar
x is the midpoint of the bar. (todo: allow passing of edges instead of midpoints) x is the midpoint of the bar. (todo: allow passing of edges instead of midpoints)
@ -121,7 +143,7 @@ x is the midpoint of the bar. (todo: allow passing of edges instead of midpoints
bar(randn(1000)) bar(randn(1000))
``` ```
![](../img/qwt/qwt_example_12.png) ![](../img/qwt/qwt_example_14.png)
### Histogram ### Histogram
@ -131,7 +153,7 @@ note: fillto isn't supported on all backends
histogram(randn(1000); nbins=50,fillto=20) histogram(randn(1000); nbins=50,fillto=20)
``` ```
![](../img/qwt/qwt_example_13.png) ![](../img/qwt/qwt_example_15.png)
### Subplots ### Subplots
@ -146,7 +168,7 @@ histogram(randn(1000); nbins=50,fillto=20)
subplot(randn(100,5); layout=[1,1,3],linetypes=[:line,:hist,:dots,:step,:bar],nbins=10,legend=false) subplot(randn(100,5); layout=[1,1,3],linetypes=[:line,:hist,:dots,:step,:bar],nbins=10,legend=false)
``` ```
![](../img/qwt/qwt_example_14.png) ![](../img/qwt/qwt_example_16.png)
### Adding to subplots ### Adding to subplots
@ -156,7 +178,7 @@ Note here the automatic grid layout, as well as the order in which new series ar
subplot(randn(100,5); n=4) subplot(randn(100,5); n=4)
``` ```
![](../img/qwt/qwt_example_15.png) ![](../img/qwt/qwt_example_17.png)
### ###
@ -166,5 +188,5 @@ subplot(randn(100,5); n=4)
subplot!(randn(100,3)) subplot!(randn(100,3))
``` ```
![](../img/qwt/qwt_example_16.png) ![](../img/qwt/qwt_example_18.png)

View File

@ -57,7 +57,7 @@ Use the `axis` or `axiss` arguments.
Note: This is only supported with Qwt right now Note: This is only supported with Qwt right now
```julia ```julia
plot(Vector[randn(100),randn(100) * 100]; axiss=[:left,:right]) plot(Vector[randn(100),randn(100) * 100]; axiss=[:left,:right],ylabel="LEFT",yrightlabel="RIGHT")
``` ```
![](../img/unicodeplots/unicodeplots_example_6.png) ![](../img/unicodeplots/unicodeplots_example_6.png)
@ -103,6 +103,28 @@ plot(rand(20,4); linetypes=[:line,:step,:sticks,:dots],labels=["line","step","st
![](../img/unicodeplots/unicodeplots_example_11.png) ![](../img/unicodeplots/unicodeplots_example_11.png)
### Lots of line styles
Options: (:solid, :dash, :dot, :dashdot, :dashdotdot)
Note: some may not work with all backends
```julia
plot(rand(20,5); linestyles=[:solid,:dash,:dot,:dashdot,:dashdotdot],labels=["solid","dash","dot","dashdot","dashdotdot"])
```
![](../img/unicodeplots/unicodeplots_example_12.png)
### Lots of marker types
Options: (:none, :ellipse, :rect, :diamond, :utriangle, :dtriangle, :cross, :xcross, :star1, :star2, :hexagon)
Note: some may not work with all backends
```julia
plot(repmat(collect(1:10)',10,1); markers=[:ellipse,:rect,:diamond,:utriangle,:dtriangle,:cross,:xcross,:star1,:star2,:hexagon],labels=["ellipse","rect","diamond","utriangle","dtriangle","cross","xcross","star1","star2","hexagon"],linetype=:none,markersize=10)
```
![](../img/unicodeplots/unicodeplots_example_13.png)
### Bar ### Bar
x is the midpoint of the bar. (todo: allow passing of edges instead of midpoints) x is the midpoint of the bar. (todo: allow passing of edges instead of midpoints)
@ -111,7 +133,7 @@ x is the midpoint of the bar. (todo: allow passing of edges instead of midpoints
bar(randn(1000)) bar(randn(1000))
``` ```
![](../img/unicodeplots/unicodeplots_example_12.png) ![](../img/unicodeplots/unicodeplots_example_14.png)
### Histogram ### Histogram
@ -121,7 +143,7 @@ note: fillto isn't supported on all backends
histogram(randn(1000); nbins=50,fillto=20) histogram(randn(1000); nbins=50,fillto=20)
``` ```
![](../img/unicodeplots/unicodeplots_example_13.png) ![](../img/unicodeplots/unicodeplots_example_15.png)
### Subplots ### Subplots
@ -136,7 +158,7 @@ histogram(randn(1000); nbins=50,fillto=20)
subplot(randn(100,5); layout=[1,1,3],linetypes=[:line,:hist,:dots,:step,:bar],nbins=10,legend=false) subplot(randn(100,5); layout=[1,1,3],linetypes=[:line,:hist,:dots,:step,:bar],nbins=10,legend=false)
``` ```
![](../img/unicodeplots/unicodeplots_example_14.png) ![](../img/unicodeplots/unicodeplots_example_16.png)
### Adding to subplots ### Adding to subplots
@ -146,7 +168,7 @@ Note here the automatic grid layout, as well as the order in which new series ar
subplot(randn(100,5); n=4) subplot(randn(100,5); n=4)
``` ```
![](../img/unicodeplots/unicodeplots_example_15.png) ![](../img/unicodeplots/unicodeplots_example_17.png)
### ###
@ -156,5 +178,5 @@ subplot(randn(100,5); n=4)
subplot!(randn(100,3)) subplot!(randn(100,3))
``` ```
![](../img/unicodeplots/unicodeplots_example_16.png) ![](../img/unicodeplots/unicodeplots_example_18.png)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 84 KiB

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 103 KiB

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 58 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 79 KiB

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 0 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 88 KiB

After

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 184 KiB

After

Width:  |  Height:  |  Size: 199 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.7 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 71 KiB

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.5 KiB

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.6 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 19 KiB

BIN
img/qwt/qwt_example_17.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
img/qwt/qwt_example_18.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.7 KiB

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.4 KiB

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.4 KiB

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.1 KiB

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 142 KiB

After

Width:  |  Height:  |  Size: 147 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 101 KiB

After

Width:  |  Height:  |  Size: 95 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

After

Width:  |  Height:  |  Size: 114 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 58 KiB

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 69 KiB

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 74 KiB

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 55 KiB

After

Width:  |  Height:  |  Size: 57 KiB