braille_output_to_file Subroutine

public subroutine braille_output_to_file(canvas, mask, text_elements, num_text_elements, arrow_elements, num_arrow_elements, plot_width, plot_height, title_text, xlabel_text, ylabel_text, legend_lines, num_legend_lines, unit)

Compose the ASCII text canvas and the braille subpixel mask into UTF-8 rows: cells with a set braille mask emit the braille glyph, all other cells keep their ASCII character (frame, axes, ticks, labels).

Arguments

Type IntentOptional Attributes Name
character(len=1), intent(inout) :: canvas(:,:)
integer, intent(in) :: mask(:,:)
type(text_element_t), intent(in) :: text_elements(:)
integer, intent(in) :: num_text_elements
type(text_element_t), intent(in) :: arrow_elements(:)
integer, intent(in) :: num_arrow_elements
integer, intent(in) :: plot_width
integer, intent(in) :: plot_height
character(len=:), intent(in), allocatable :: title_text
character(len=:), intent(in), allocatable :: xlabel_text
character(len=:), intent(in), allocatable :: ylabel_text
character(len=*), intent(in) :: legend_lines(:)
integer, intent(in) :: num_legend_lines
integer, intent(in) :: unit