pub fn render_pixels(
pixels: Vec<RawPixelData>,
options: &DensityPlotOptions,
render_config: &mut RenderConfig,
) -> Result<PlotBytes>Expand description
Render pixels to a JPEG image using the Plotters backend
This function handles the complete rendering pipeline:
- Sets up Plotters chart with axes and mesh
- Writes pixels directly to the buffer
- Encodes to JPEG format
Progress reporting is handled via the RenderConfig if provided.