I'm working in project that depend on generate reports using codeigniter.
I tried to use some libraries like mpdf and r&os it look like it work in English data but in arabic it doesn't work please Help and sorry for language
Related
I have a Laravel project that needs files like docx, xlsx, pptx, and pdf to generate a thumbnail. I can't see any tutorials that may be helpful enough for a beginner like me.
Sorry! the package you are referring to is a python library.
I'm looking to build a character generator for 5th edition dungeons and dragons, just as a side project. However what i don't know is which language to use. so far Ive narrowed down that i need a language that can successfully export out to a PDF, so that variables submitted to the program get passed and the character sheet can be print. any suggestions?
many languages should be able to handle this for you. the first question i would ask yourself is what language are you most fluent in?
for me that would be php so i would end up doing this project in a combination of html/js/php.
i have used fpdf for generating pdf that either output to the browser, save to the server, or trigger a download. ( http://www.fpdf.org/ )
fpdf was pretty easy to pick up following the examples.
I already search on Google and CI websites but no luck until now.
Do you know where I can find the traditional chinese language pack for Code Igniter?
PS: I already download CI from the official Taiwanese CI website but it only contains english language files.
Thank you for your help! (or wish me good luck to create this language pack!)
I found the language pack here:
https://github.com/CodeIgniter-TW/CodeIgniter-Language
If you aren't familiar with git, just Click the Download Zip button to get an achieve.
Then extract them to codeigniter/system/language/zh_tw/. :)
I am exhausted searching for the way to integrate LATEX in my codeigniter project. But i cant find any way. In my website I need to insert and show mathematical terms and figures in HTML.
how can i easily do i don't know.If LATEX is the only way what is the easy way to do that.
would you please suggest me a way.
I suggest you save the latex code in the server-side and when you are showing on the website in HTML you can perform the conversion using Pandoc (a universal markup languages conversor).
But I'm not sure if this would work for mathematical symbols. Maybe you need to use another program (eg ImageMagick).
I'm facing a weird actions by codeiginter especially when it comes to using different languages. I had to translate some pages in the system/language/arabic and system/language/japanese as well and changed the chartset to UTF-8in the config.php file, but when I test it through the form validation for example, it gives me ????????? characters as if these languages are not recognized even by the unicode.
any idea how to get around this issue?
Thanks
ok, it urned out that I need to do some trick in here. For Arabic language I had to use unicoding html to make it like symbols then add them to my php or html. and it works perfect. For Japanese language, it is just adjusting unicoding in the config file at codeigniter. And that's it.