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
|
use plotters::prelude::*;
use plotters::style::text_anchor::{HPos, VPos};
use plotters_backend::{
BackendColor, BackendStyle, BackendTextStyle, DrawingBackend, DrawingErrorKind,
};
use std::error::Error;
#[derive(Copy, Clone)]
enum PixelState {
Empty,
HLine,
VLine,
Cross,
Pixel,
Text(char),
Circle(bool),
}
impl PixelState {
fn to_char(self) -> char {
match self {
Self::Empty => ' ',
Self::HLine => '-',
Self::VLine => '|',
Self::Cross => '+',
Self::Pixel => '.',
Self::Text(c) => c,
Self::Circle(filled) => {
if filled {
'@'
} else {
'O'
}
}
}
}
fn update(&mut self, new_state: PixelState) {
let next_state = match (*self, new_state) {
(Self::HLine, Self::VLine) => Self::Cross,
(Self::VLine, Self::HLine) => Self::Cross,
(_, Self::Circle(what)) => Self::Circle(what),
(Self::Circle(what), _) => Self::Circle(what),
(_, Self::Pixel) => Self::Pixel,
(Self::Pixel, _) => Self::Pixel,
(_, new) => new,
};
*self = next_state;
}
}
pub struct TextDrawingBackend(Vec<PixelState>);
impl DrawingBackend for TextDrawingBackend {
type ErrorType = std::io::Error;
fn get_size(&self) -> (u32, u32) {
(100, 30)
}
fn ensure_prepared(&mut self) -> Result<(), DrawingErrorKind<std::io::Error>> {
Ok(())
}
fn present(&mut self) -> Result<(), DrawingErrorKind<std::io::Error>> {
for r in 0..30 {
let mut buf = String::new();
for c in 0..100 {
buf.push(self.0[r * 100 + c].to_char());
}
println!("{}", buf);
}
Ok(())
}
fn draw_pixel(
&mut self,
pos: (i32, i32),
color: BackendColor,
) -> Result<(), DrawingErrorKind<std::io::Error>> {
if color.alpha > 0.3 {
self.0[(pos.1 * 100 + pos.0) as usize].update(PixelState::Pixel);
}
Ok(())
}
fn draw_line<S: BackendStyle>(
&mut self,
from: (i32, i32),
to: (i32, i32),
style: &S,
) -> Result<(), DrawingErrorKind<Self::ErrorType>> {
if from.0 == to.0 {
let x = from.0;
let y0 = from.1.min(to.1);
let y1 = from.1.max(to.1);
for y in y0..y1 {
self.0[(y * 100 + x) as usize].update(PixelState::VLine);
}
return Ok(());
}
if from.1 == to.1 {
let y = from.1;
let x0 = from.0.min(to.0);
let x1 = from.0.max(to.0);
for x in x0..x1 {
self.0[(y * 100 + x) as usize].update(PixelState::HLine);
}
return Ok(());
}
plotters_backend::rasterizer::draw_line(self, from, to, style)
}
fn estimate_text_size<S: BackendTextStyle>(
&self,
text: &str,
_: &S,
) -> Result<(u32, u32), DrawingErrorKind<Self::ErrorType>> {
Ok((text.len() as u32, 1))
}
fn draw_text<S: BackendTextStyle>(
&mut self,
text: &str,
style: &S,
pos: (i32, i32),
) -> Result<(), DrawingErrorKind<Self::ErrorType>> {
let (width, height) = self.estimate_text_size(text, style)?;
let (width, height) = (width as i32, height as i32);
let dx = match style.anchor().h_pos {
HPos::Left => 0,
HPos::Right => -width,
HPos::Center => -width / 2,
};
let dy = match style.anchor().v_pos {
VPos::Top => 0,
VPos::Center => -height / 2,
VPos::Bottom => -height,
};
let offset = (pos.1 + dy).max(0) * 100 + (pos.0 + dx).max(0);
for (idx, chr) in (offset..).zip(text.chars()) {
self.0[idx as usize].update(PixelState::Text(chr));
}
Ok(())
}
}
fn draw_chart<DB: DrawingBackend>(
b: DrawingArea<DB, plotters::coord::Shift>,
) -> Result<(), Box<dyn Error>>
where
DB::ErrorType: 'static,
{
let mut chart = ChartBuilder::on(&b)
.margin(1)
.caption("Sine and Cosine", ("sans-serif", (10).percent_height()))
.set_label_area_size(LabelAreaPosition::Left, (5i32).percent_width())
.set_label_area_size(LabelAreaPosition::Bottom, (10i32).percent_height())
.build_cartesian_2d(-std::f64::consts::PI..std::f64::consts::PI, -1.2..1.2)?;
chart
.configure_mesh()
.disable_x_mesh()
.disable_y_mesh()
.draw()?;
chart.draw_series(LineSeries::new(
(-314..314).map(|x| x as f64 / 100.0).map(|x| (x, x.sin())),
&RED,
))?;
chart.draw_series(LineSeries::new(
(-314..314).map(|x| x as f64 / 100.0).map(|x| (x, x.cos())),
&RED,
))?;
b.present()?;
Ok(())
}
const OUT_FILE_NAME: &'static str = "plotters-doc-data/console-example.png";
fn main() -> Result<(), Box<dyn Error>> {
draw_chart(TextDrawingBackend(vec![PixelState::Empty; 5000]).into_drawing_area())?;
let b = BitMapBackend::new(OUT_FILE_NAME, (1024, 768)).into_drawing_area();
b.fill(&WHITE)?;
draw_chart(b)?;
println!("Image result has been saved to {}", OUT_FILE_NAME);
Ok(())
}
#[test]
fn entry_point() {
main().unwrap()
}
|