| 349 | } |
| 350 | |
| 351 | void PDFUtils::PaintPath(PathFillType fillType, const std::shared_ptr<MemoryWriteStream>& content) { |
| 352 | content->writeText("f"); |
| 353 | if (fillType == PathFillType::EvenOdd) { |
| 354 | content->writeText("*"); |
| 355 | } |
| 356 | content->writeText("\n"); |
| 357 | } |
| 358 | |
| 359 | const char* PDFUtils::BlendModeName(BlendMode mode) { |
| 360 | // PDF32000.book section 11.3.5 "Blend Mode" |