rtf-html-php
rtf-html-php copied to clipboard
RTF to HTML converter in PHP
Hello, is there a plan to modify to PHP version 8.2 or version 9.0 - "Deprecated dynamic properties"? In version 8.2 the problem can be solved with attribute #[\AllowDynamicProperties], but...
Update converts a DIB (device-independent bitmap) image to a Windows bitmap file. Tested with a DIB file with the header size of 40 bytes (BITMAPINFOHEADER). Other header sizes should also...
Hi all, Are there any way to implement for portugues special caracter like ç, â ô õ ? the word "RELAÇÃO" for examplo your code print as rela\'e7\'e3o any help...
### Reproduction Convert file [tekst2.zip](https://github.com/henck/rtf-html-php/files/11108081/tekst2.zip) using: ```php $rtf = file_get_contents('tekst2.rtf'); $document = new Document(rtrim($rtf, "\0")); // remove ASCII 0, the NULL-byte. $formatter = new HtmlFormatter('UTF-8'); $html = $formatter->Format($document); ``` This...
I just write a workarround doing some annotations to allow dynamic properties.