Search found 4 matches

by mist83
Tue May 11 2010
Forum: Amyuni PDF Creator .NET (PDF Viewer / Editor)
Topic: setting printer papersize programmatically
Replies: 1
Views: 11177

Re: setting printer papersize programmatically

I don't know if this helps, but the following code: IacDocument document = new IacDocument(); document.PageWidth = 100; document.PageLength= 500; will set the document's height and width. Note that the HEIGHT (Y) is set by the PageWidth property, and the WIDTH (X) is set by the PageLength property. ...
by mist83
Tue May 11 2010
Forum: Amyuni PDF Creator .NET (PDF Viewer / Editor)
Topic: Converting a BLOB to PDF
Replies: 1
Views: 10203

Re: Converting a BLOB to PDF

What exactly are you looking for?
Do you have an image in a BLOB that you need placed on a PDF? What does the BLOB represent?

Mick
by mist83
Tue May 11 2010
Forum: Amyuni PDF Creator .NET (PDF Viewer / Editor)
Topic: XPS to PDF and Gradient Color
Replies: 1
Views: 10483

Re: XPS to PDF and Gradient Color

Is this an issue, or am I doing something wrong?

Does this code produce the results that I received for anyone else?

Thank you,
Mick
by mist83
Fri Apr 23 2010
Forum: Amyuni PDF Creator .NET (PDF Viewer / Editor)
Topic: XPS to PDF and Gradient Color
Replies: 1
Views: 10483

XPS to PDF and Gradient Color

When I have an XPS file that has a gradient color in it, say for example a gradient from red to green, when I convert it to a PDF with the Amyuni library the entire gradient area is black (neither red or green). When it's solid, however, it shows up correctly. Here is some sample code that reproduce...