Search found 8 matches

by floele
Wed Dec 23 2015
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Creating PDF/A3 compliant PDF documents
Replies: 0
Views: 15690

Creating PDF/A3 compliant PDF documents

Hi, other than setting the options required for PDF/A (as listed on https://www.amyuni.com/WebHelp/Amyuni_Document_Converter/PDFA_Support/PDF_A_Support.htm), what is necessary to create PDF/A3 compliant files? In particular, it allows having containers inside PDF documents. Is this simply achieved b...
by floele
Fri Aug 20 2010
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Image disappears when printing to PDF
Replies: 0
Views: 4975

Image disappears when printing to PDF

Hi, when printing a document with a picture (JPEG) to PDF (PDF Converter 4.0.1.0), it disappears if the image exceeds a certain size. For example, if the image has a width of about 1/4 of the page, it is shown in the PDF, if it's 1/2 of the page it disappears. The image *does* appear when printing t...
by floele
Fri Aug 20 2010
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Printing with .NET is slow
Replies: 0
Views: 5256

Printing with .NET is slow

Hi, I'm using 4.0.1.0 of the Amyuni PDF Converter, on Win7 x64. I'm printing a document of 3 pages to the PDF printer using C#/.NET 2.0, but it is very slow (10 seconds). I wonder why that is, because both a print preview (with PrintPreviewDialog) of the document and printing a document with the sam...
by floele
Mon Sep 14 2009
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Problem with printing coloured fonts (Resolved)
Replies: 3
Views: 5624

Re: Problem with printing coloured fonts

Thanks, that really seems to work nicely :)
by floele
Thu Aug 27 2009
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Problem with printing coloured fonts (Resolved)
Replies: 3
Views: 5624

Re: Problem with printing coloured fonts

Do you need more information in order to help me resolving this issue?
by floele
Mon Aug 17 2009
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Problem with printing coloured fonts (Resolved)
Replies: 3
Views: 5624

Problem with printing coloured fonts (Resolved)

Hi, I have a problem when drawing coloured text to a PDF document, which is being printed using the PDF Printer (using version 3.0.3.f). I'm basically doing the following: using (Brush brush = new SolidBrush(Color.XYZ)) { g.DrawString("Text", font, brush, normalizedRectangle, stringFormat)...
by floele
Thu Nov 22 2007
Forum: Amyuni PDF Creator .NET (PDF Viewer / Editor)
Topic: [Solved] Printing with high DPI values
Replies: 2
Views: 8069

Thanks, that was the right hint. It took quite a while though to figure out the full code: int saveDC; int oldMap; Size oldWindow, oldView; // save current dc saveDC = SaveDC( hMemDC ); // set scale and origin oldMap = SetMapMode( hMemDC, 7 ); // #define MM_ISOTROPIC 7 int dvPxX = GetDeviceCaps(hMem...
by floele
Thu Nov 15 2007
Forum: Amyuni PDF Creator .NET (PDF Viewer / Editor)
Topic: [Solved] Printing with high DPI values
Replies: 2
Views: 8069

[Solved] Printing with high DPI values

Hi. I'm currently using the PDF Creator to print into a device context given to me by a different component in our application. It became apparent that it is necessary to increase the zoom level for higher DPI values. Currently, it is calculated like this: Graphics grDpi = Graphics.FromHdc(new Syste...