RT File Converter

Convert between RTTEX, RTFONT and standard image formats.

Auto Download

Automatically download PNG after conversion

RTTEX to PNG

PNG to RTTEX

RTTEX Hash File: -

Preview

// Activate Target document.getElementById(tabId).classList.remove('hidden'); document.getElementById('tab-' + tabId).classList.remove('text-gray-400'); document.getElementById('tab-' + tabId).classList.add('bg-white', 'text-black', 'shadow-lg'); } // Toggle Logic for Editor $(function () { // Shim for bootstrapToggle $.fn.bootstrapToggle = function (action) { if (action === 'off') { this.prop('checked', false).trigger('change'); } else if (action === 'on') { this.prop('checked', true).trigger('change'); } return this; }; $('#use_editor').change(function () { if (this.checked) { $('#without-editor').addClass('d-none'); $('#with-editor').removeClass('d-none'); } else { $('#without-editor').removeClass('d-none'); $('#with-editor').addClass('d-none'); } }); });