thinreports-generator
thinreports-generator copied to clipboard
A Ruby library for Thinreports
This PR fixes #118 - [x] Basic Usage - [x] Multiple Groups - [x] Section Auto Stretch - [x] Section Bottom Margin - [x] Section Parameters - [ ] Item...
## Introduction It has some different implementations from the official frozen specification thinreports/thinreports#5. ## Status - [x] Implementation - [x] Manual test - [ ] Some code refactoring - [...
- [x] Basic Usage by #122 - [x] Multiple Groups by #122 - [x] Section Auto Stretch by #122 - [x] Section Bottom Margin by #122 - [x] Section Parameters...
* Remove dependencies between SectionReport and BasicReport implementations and make them independent * Improve complex implementation due to their dependencies (e.g., section_height.rb, draw_item.rb)
Prawn's inline formatting: http://rubydoc.info/gems/prawn/0.12.0/Prawn/Text:text **Support formats:** - Bold: `bold` - Italic: `italic` - Underline: `underline` - Strikethrough: `strikethrough` - Subscript, Superscript: `super`, `sub` - Font style - Size, CharacterSpacing: `font...
I'd like to change the size of my rectangle within my generator with something like: `row.item("my_shape").style(:height, "50px", :width, "30px")` Is it possible?
This PR fixes #112
直近にて表題のような動作を確認したため、報告いたします。 原因そのものはttfunkにあると考えられます。 gemspecで問題のバージョンが避けられるようになっていればと感じました。 内容確認のお手数となり恐縮ですが、ttfunkの問題が解消したタイミングでスムーズに移行できると幸いです。 ### ■概要 日本語を含むPDFを作成し、Adobe Acrobat Reader で閲覧したところ、以下のようなエラーが表示される。 『埋め込みフォント「bfbd90+IPAMincho」を抽出できません。』 日本語部分が一部空欄になるなど、崩れが発生する。 描画されていないだけで、文字のコピーはできた。 ### ■問題の再現手順、環境 コードは、以下の使用例を改造不要で再現した。 https://github.com/thinreports/thinreports-examples/tree/main/eudc ``` git clone https://github.com/thinreports/thinreports-examples.git cd thinreports-examples && git checkout -b testing && cd...