Return a filename based on a hash of the string, fontsize, and dpi.
(cls, tex, fontsize, dpi=None)
| 186 | |
| 187 | @classmethod |
| 188 | def get_basefile(cls, tex, fontsize, dpi=None): # Kept for backcompat. |
| 189 | """ |
| 190 | Return a filename based on a hash of the string, fontsize, and dpi. |
| 191 | """ |
| 192 | return str(cls._get_base_path(tex, fontsize, dpi)) |
| 193 | |
| 194 | @classmethod |
| 195 | def get_font_preamble(cls): |
nothing calls this directly
no test coverage detected