Search found 118 matches

by Devteam
Wed Feb 01 2023
Forum: Technical Notes
Topic: Amyuni PDF Creator N-Up Document Processing without Printing
Replies: 0
Views: 48428

Amyuni PDF Creator N-Up Document Processing without Printing

Introduction In printing terminology, N-Up refers to the process of printing pages and laying them out over the destination pages in a 2-up, 3-up or more generally N-up pages per sheet. This process is common in a wide variety of applications through the printing settings specified just before prin...
by Devteam
Thu Jun 11 2020
Forum: Technical Newsletters
Topic: Printer crashes after installing security updates KB4560960 and KB4561608
Replies: 0
Views: 32630

Printer crashes after installing security updates KB4560960 and KB4561608

KB4560960 update (Windows 10 builds 1903 and 1909) and KB4561608 (Windows 10 build 1809) from Microsoft have created a ton of issues with printer drivers including Amyuni PDF Converter all versions (v3 to v6.5!) We have pinpointed the issue to the call to the Windows API EngGetDriverName crashing wh...
by Devteam
Fri Aug 25 2017
Forum: Useful Hints / Windows, Web & Device Programming
Topic: Loading mismtached PDBs and DLLs in Visual Studio
Replies: 0
Views: 78340

Loading mismtached PDBs and DLLs in Visual Studio

When investigating crashes in a DLL or executable that was built in release mode, the symbol file (.PDB) for the DLL or exe is needed. The symbol file has to match exactly the executable and has to be built at the same time as the executable. Sometimes we run into situations where the PDB is not ava...
by Devteam
Tue Dec 15 2015
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Interference between printing and Outlook2016 (MAPI)?
Replies: 4
Views: 27461

Re: Interference between printing and Outlook2016 (MAPI)?

Office 2016 is proving to be a real headache and there is no easy solution to the issue that you are encountering. Office is somehow changing the security on the registry and your application is not able to read/write from certain registry locations that are needed by PDF Converter. The solution tha...
by Devteam
Mon Dec 14 2015
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Convert existing PDF to PNG
Replies: 4
Views: 18010

Re: Convert existing PDF to PNG

Hello Stewarth When using Amyuni PDF Creator .Net, there is alternate way of rasterizing a PDF file and saving the result as PNG. You can draw each page into a bitmap using the method IacDocument.DrawCurrentPage with the method System.Drawing.Graphics.FromImage . The code in C# should look like this...
by Devteam
Mon Dec 14 2015
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: ConcatenateFiles creates corrupted text in PDF
Replies: 6
Views: 22354

Re: ConcatenateFiles creates corrupted text in PDF

Hello Stewarth If version 4.5.3.9 worked in all scenarios, integrating that version with your application could be a solution, newer versions of a Windows driver do not get overwritten by older versions unless they are explicitly uninstalled first. Another solution could be to use cdintf.dll version...
by Devteam
Mon Dec 14 2015
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: "Negative" PDF documents
Replies: 1
Views: 17340

Re: "Negative" PDF documents

Hello Gio Please contact our support team by email providing as much information as possible about the issue, for example: Exact version of the library that your customer is using, for example 5.0.1.9 Exact version of the operating systems where this issue is happening Is the application a 32 bit pr...
by Devteam
Thu Oct 01 2015
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: What is difference between Concatenate and AppendExisting?
Replies: 1
Views: 15294

Re: What is difference between Concatenate and AppendExisting?

There are a couple of minor differences between the 2 flags. 1) Concatenate was introduced with v1 of PDF Converter (a long time ago...), whereas AppendExisting was introduced in a later release. AppendExisting comes with various other flags that give more options to the developer and end-user when ...
by Devteam
Thu Nov 06 2014
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: PDF Printer Hangs
Replies: 5
Views: 11104

Re: PDF Printer Hangs

Hello KeithF1138,

Our support team have been trying to contact you by email about this issue, can you please verify that our emails are not being filtered as spam on your side?

Thanks,
Amyuni Support.
by Devteam
Wed Nov 05 2014
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Layered PDF´s
Replies: 4
Views: 9301

Re: Layered PDF´s

You're right, I forgot the /Order keyword. I tried your sample thinking the German letters might be an issue but these worked fine. One thing you have to be aware of is that you have to respect the order of Layers. If you have: Layer 1 Sub-Layer A Sub-Layer B Layer 2 You have to output in the page c...
by Devteam
Tue Nov 04 2014
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Strange behaviour while exporting pdf file into text file.
Replies: 2
Views: 7591

Re: Strange behaviour while exporting pdf file into text file.

Hello Awadhendra, The text export functionality is not in general machine-dependent, but it is file-dependent. We have tried to reproduce this issue on our side using the limited information you have provided and the latest version of the library (5.0.1.3), but we have not been able to reproduce it,...
by Devteam
Tue Nov 04 2014
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Layered PDF´s
Replies: 4
Views: 9301

Re: Layered PDF´s

Each page can have its own layers, but the layers pane in Acrobat Reader will still show all available layers to all pages. You don't need to define the layers at the beginning of the document, you can define them after the last page, e.g.: SetLayer( hDC, L"" ); // just to inform the print...
by Devteam
Mon Mar 03 2014
Forum: Your opinion counts
Topic: What are the features you are missing in our tools?
Replies: 12
Views: 111629

Re: What are the features you are missing in our tools?

June 2013 marked the release of version 5.0 of our toolkits with a number of new features and enhancements. Unfortunately the major release came with some stability issues, since then we had 4 new releases 5.0.0.3, 5.0.0.5, 5.0.0.7 and very recently 5.0.0.9. We hope that "kensands" has a d...
by Devteam
Thu Dec 05 2013
Forum: Useful Hints / Windows, Web & Device Programming
Topic: Integrating mixed-mode assemblies (X86/X64) in .Net
Replies: 0
Views: 49770

Integrating mixed-mode assemblies (X86/X64) in .Net

Using mixed-mode assemblies (X86/X64 dlls) in a .Net project configured as AnyCPU. Visual Studio 2003 introduced the concept of creating mixed-mode .Net assemblies , which are assemblies that contain pieces of native code for one specific CPU architecture. Mixed-mode assemblies enhanced support for...