- Question about Oemuni Printerdriver?
- Posted by Ivan Van den Bossche on August 14th, 2003
Hi,
Does somebody know how I can add additional resolutions to the Oemuni
Printerdriver (Win2000 DDK)? I need extra resolutions like 1200DPI x
1200DPI, 150DPI x 150DPI, etc
How can I easily do this?
Thanks a lot!
Ivan
- Posted by Bimo on August 15th, 2003
"Ivan Van den Bossche" wrote
The word "easily" must never be used in conjunction with the word
"printerdriver"
You are hereby banned from this ng for a week ;o)
LB
- Posted by joeo on August 15th, 2003
Edit the GPD file: add an option to the *Feature:
Resolution. e.g.:
*Feature: Resolution
{
*rcNameID: =RESOLUTION_DISPLAY
*DefaultOption: Option1
*Option: Option1
{
*Name: "300 x 300 " =DOTS_PER_INCH
*DPI: PAIR(300, 300)
*TextDPI: PAIR(300, 300)
*SpotDiameter: 1
*Command: CmdSelect
{
*Order: DOC_SETUP.60
*NoPageEject?: TRUE
*CallbackID: 7
}
}
*Option: Option2
{
*Name: "600 x 600 " =DOTS_PER_INCH
*DPI: PAIR(600, 600)
*TextDPI: PAIR(600, 600)
*SpotDiameter: 1
*Command: CmdSelect
{
*Order: DOC_SETUP.60
*NoPageEject?: TRUE
*CallbackID: 7
}
}
}