EPPlus 6.1: image in header - epplus

I would like to put an image in the header of a worksheet. I saw the ExcelHeaderFooter.Image property but that doesn't help. I couldn't find it in the samples either

Related

Filtering out the header and footer text using pdfbox

I'm trying to get the text from a pdf document using pdfbox, the problem is I'm getting the header and footer text as well. Does anyone know if there's a way to filter that out? Maybe via some settings in TextPosition?

How to link an image to the header

I have an Excel sheet where I am using an image in the header. From this question I already know how to add or link images as Shapes in an Excel sheet.
Now I need to do something similar to the header, where I can link an Image to the header instead of saving the image in the Workbook (because I have a lot of images which makes the file size huge).
Code:
Sheet.PageSetup.LeftHeaderPicture.Filename
You need to set the Filename property of the _____HeaderPicture property to the path of the picture you want to use.

How to create a PDF document with header from a template with docx4j?

I want to create a document from an existing Word 2010 document and convert it to PDF using docx4j 3.1.0. I've built upon the sample in
https://github.com/plutext/docx4j/blob/master/src/samples/docx4j/org/docx4j/samples/ConvertOutPDF.java
The Word document already contains a header with text and an image that I do not modify in my processing. The resulting PDF document, however, doesn't contain the header.
Is this someting that is supposed to work? If yes: how can I find out what I am missing?
Yes, if you can see the header when you "save as PDF" in Word, then you should also see the header in docx4j's PDF output.
To have it fixed, we'll need to see the docx.
Just for the curious reader: the specific cause for the missing header turned out to be a wrong approach of setting page margins on the document. Instead of modifiying the existing settings via body.getSectPr().getPgMar() (or even simpler: setting it in the template right away), the code created new PageDimensions and set a new SectPtr on the body, thereby somehow overwriting or removing the header.

How do I save an image as resource in Excel and reference it in Footer?

I am trying to embed a logo in the footer of a dynamically generated spreadsheet.
My first thought was to see what "macro recorder" would provide. Unfortunately, it references an image on the user's computer. The problem is that, in most cases, this file will not exist, and I don't want the user to have to download an image for the VBA script to be functional.
Is it possible to store an image in a VBA-enabled spreadsheet as a resource and then reference it from the footer?

RadGrid export to PowePoint

is it possible to export the content of the Radgrid to Powerpoint? if so, can someone tell me the logic for it.
I believe you could do this by generating Office HTML-compliant code. I haven't tried that, but I think you can get the Word output from RadGrid and stream it as a PPT file directly. Of course you will have to set the corresponding content-disposition and content-type headers.
You can find some documentation on this format here:
http://msdn.microsoft.com/en-us/library/aa155477%28office.10%29.aspx
Download the EXE file and extract it. The documentation is packed in CHM format.
Again, this is just an idea so don't take my words as 100% truth. Hope this helps.