Tagged Questions
0
votes
0answers
166 views
Redirect logging of a third party dll to own log-file
In my C# program I intend to catch every potential log like this:
public static void Main(string[] args)
{
using (new ConsoleToFile("./output.log"))
{
doMain(args, parser, options, ...
0
votes
1answer
358 views
Generate and send PDF file directly to a printer using Apache FOP.net or nFOP in C#/VB.Net
I am working on an application in .Net Frame in which I am using Apache FOP to generate and send pdf files directly to the printer.
There are two parts of this application:
1. Generate PDF files ...
1
vote
2answers
803 views
FOP and IKVM in .NET - Images Not Working
UPDATE2: I got it working completely now! Scroll way down to find out how...
UPDATE: I got it working! Well... partially. Scroll down for the answer...
I'm trying to get my FO file to show an ...
7
votes
3answers
3k views
Using ApacheFOP v1.0 in .NET application
Has anyone successfully complied the Apache FOP v1.0 library to a .NET DLL? I am using the IKVM syntax found at http://onjava.com/pub/a/onjava/2004/08/18/ikvm.html; however, the compiled DLL seems to ...
1
vote
1answer
226 views
Add non destructive Bleeds to pdf programmatically
I've working on something at the moment and we've created a pdf output using FOP which is working fine. Now however the printhouse wants to have bleeds all around the pdf.
Is it possible to resize ...