专家解答:
请您直接用B_Get_Graphic_ColorBMP()函数打印,B_Set_BMPSave()是存储一张图片到printer里面。
B_Get_Graphic_ColorBMP()
===============================================================================
功能: 轉換 BMP 圖檔彩色變灰階,並將圖形儲存在印表機內的 RAM。
語法: int B_Get_Graphic_ColorBMP(int x, int y, LPCTSTR filename);
參數: int x; ●X 座標。
int y; ●Y 座標。
LPCTSTR filename ●圖形檔名稱,可含路徑。
格式如:XXXXXXXX.XXX 或 X:\XXX\XXX.BMP
傳回值: 0 -> OK.
Reference BW-Error.txt file.
範例: B_Get_Graphic_ColorBMP(30,20,"girl.bmp");
說明: 這個 B_Get_Graphic_ColorBMP 函數可輸入任何顏色 BMP 圖檔,並自動轉換為
黑白灰階圖檔送至印表機列印,而轉換品質由 Windows's Driver for Dr.200
or Dr.300 調整,所以使用者必需安裝 ARGOX Driver,印表機抓取為預設印表機,
假若 default printer 不是 Dr.200 或 Dr.300 ,程式自動搜尋 Windows 內,
是否有裝 Dr.200 或 Dr.300,再依序使用。圖形儲存在印表機內的 RAM。 |
|