| 13 | } |
| 14 | |
| 15 | const String imageToBase64 (const Image &image) |
| 16 | { |
| 17 | MemoryBlock memoryBlock; |
| 18 | MemoryOutputStream memoryStream(memoryBlock,true); |
| 19 | PNGImageFormat png; |
| 20 | png.writeImageToStream (image, memoryStream); |
| 21 | |
| 22 | return (memoryBlock.toBase64Encoding()); |
| 23 | } |
| 24 | |
| 25 | const Justification justificationFromProperty(const var &justificationProperty) |
| 26 | { |
nothing calls this directly
no test coverage detected