Search found 31 matches: lgray

Return to advanced search

printer class printimage

... => PRNIMAGE( 409 ) I cal this method with oPrn:PrintImage( nRow,nCol,cImage,nWidth,nBottom,; lStretch, nAlpha, lTransp, lGray,; cUnits, cAlign) where is the error ?
by Silvio.Falconi
Tue Apr 18, 2023 10:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: printer class printimage
Replies: 7
Views: 619

Re: vertical position in preview

use this oPrn:PrintImage( nTop, nLeft,cFile,nRight,nBottom, lStretch, nAlpha, lTransp, lGray ) see on email Hi Silvio, it's still the same error. The image position is different with PRINT oPrn NAME "prv_test" PREVIEW and PRINT oPrn NAME "prv_test" ...
by Silvio.Falconi
Fri May 13, 2022 8:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: vertical position in preview
Replies: 15
Views: 830

Re: vertical position in preview

use this oPrn:PrintImage( nTop, nLeft,cFile,nRight,nBottom, lStretch, nAlpha, lTransp, lGray ) see on email Hi Silvio, it's still the same error. The image position is different with PRINT oPrn NAME "prv_test" PREVIEW and PRINT oPrn NAME "prv_test" ...
by Detlef
Fri May 13, 2022 7:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: vertical position in preview
Replies: 15
Views: 830

Re: vertical position in preview

use this
oPrn:PrintImage( nTop, nLeft,cFile,nRight,nBottom, lStretch, nAlpha, lTransp, lGray )

see on email
by Silvio.Falconi
Thu May 12, 2022 1:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: vertical position in preview
Replies: 15
Views: 830

Re: Mr. Nages please: HARU PDF Bugs/Extensions

... be treated as deprecated for future development. Syntax: METHOD PrintImage( nRow, nCol, uImage, nWidth, nHeight, lStretch, nAlpha, lTransp, lGray, cUnits, cAlign, cURL )  FWPdf ignores nAlpha, lTransp and lGray TPrinter ignores cURL 1,2,4,5) nRow, nCol, nWidth, nHeight specify the ...
by nageswaragunupudi
Thu Mar 05, 2020 5:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Nages please: HARU PDF Bugs/Extensions
Replies: 21
Views: 5563

New FTDN January/Enero 2018 (FWH 18.01)

... Optional. Set to .T. to read as GDIP Image. * Drawing Images: Method oWnd:DrawImage( uImage, [aRect], [lTransp := .t.], [nResizeMode], [lnAlpha], [lGray], [cAlign], [aColorMap] ) --> nLastRow function FW_DrawImage( oWnd/hDC, uImage, <other params same as above> ) oWnd can be any window, ...
by Antonio Linares
Wed Feb 14, 2018 5:03 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN January/Enero 2018 (FWH 18.01)
Replies: 1
Views: 2579

Labeledit and Print ( download )

... to english. With the used < Units > it works perfect now. PrintImage( nRow, nCol, uImage, nWidth, nHeight, lStretch, nAlpha, lTransp, lGray, cUnits ) I'm working on some more functions like 1. selecting any DBF and define the fields to be printed ( for the moment customer.dbf is used ...
by ukoenig
Tue Sep 20, 2016 9:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Labeledit and Print ( download )
Replies: 1
Views: 640

Re: Printing an image.

... < units > added to METHOD PrintImage in release FWH 16.4 METHOD PrintImage( nRow, nCol, uImage, nWidth, nHeight, lStretch, nAlpha, lTransp, lGray, cUnits ) CLASS TPrinter => PIXEL,MM,CM,INCHES that makes the image-painting easy, using the same center-vars from the textpositions. The calculations ...
by ukoenig
Mon Sep 19, 2016 9:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Printing an image.
Replies: 18
Views: 5606

Re: Printing an image.

... Left = 0.5 * A4-height aCoord1 := oPRINT:Cmtr2Pix( @nRow, @nCol ) // PrintImage( nRow, nCol, uImage, nWidth, nHeight, lStretch, nAlpha, lTransp, lGray ) oPRINT:PrintImage( nRow - nImgSize / 2, nCol - nImgSize / 2, c_Pfad1 + "Test.bmp", nImgSize, nImgSize, .T.) regards Uwe :D
by ukoenig
Mon Sep 19, 2016 9:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Printing an image.
Replies: 18
Views: 5606

Re: Printing an image.

FWH 16.03: Please use the method:

PrintImage( nRow, nCol, cImage, nWidth, nHeight, lStretch, nAlpha, lTransp, lGray ) // All units in pixels

Ex:
oPrn:PrintImage( 100,100, "c:\fwh\bitmaps\olga1.jpg", 5000,7000 )
by nageswaragunupudi
Fri Aug 26, 2016 6:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Printing an image.
Replies: 18
Views: 5606

New FTDN April/Abril 2016 (FWH 16.04)

... ] ; [<unit: PIXEL,MM,CM,INCHES>] ; [<lStr: STRETCH>] ; [ ALPHALEVEL <nAlpha>] ; [<lNoTrn: NOTRANSPARENT>] ; [<lGray: GRAY> ] ; [LASTROW <lrow>] ; => ; [<lrow> := ] <prn>:PrintImage( <nRow>, <nCol>, <img>, [<nWidth>], ...
by Antonio Linares
Thu May 12, 2016 6:51 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2016 (FWH 16.04)
Replies: 8
Views: 7582

TPrinter recent methods PrintImage() and SayText()

... The return value can be used to continue printing next lines. oPrn:PrintImage( nRow, nCol, uImage, nWidth, nHeight, lStretch, nAlpha, lTransp, lGray ) --> nLastRow printed uImage can be any image source. For those who like, I suggest trying this sample program: #include "fivewin.ch"//----------------------------------------------------------------------------//function ...
by nageswaragunupudi
Mon May 02, 2016 4:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TPrinter recent methods PrintImage() and SayText()
Replies: 19
Views: 4150

New FTDN October/Octubre 2015 (FWH 15.10)

... By default the text is aligned to Top-Left of the rectangle. 2) PrintImage( nRow, nCol, uImage, nWidth, nHeight, lStretch, nAlpha, lTransp, lGray ) Alternative method to SayImage. Accepts any image file, resource, memory buffer, bitmap handle, TBitmap or TImage or TXImage Object and does ...
by Antonio Linares
Sat Dec 05, 2015 11:27 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octubre 2015 (FWH 15.10)
Replies: 0
Views: 925

Re: New FTDN September/Septiembre 2015 (FWH 15.09)

... By default the text is aligned to Top-Left of the rectangle. 2) PrintImage( nRow, nCol, uImage, nWidth, nHeight, lStretch, nAlpha, lTransp, lGray ) Alternative method to SayImage. Accepts any image file, resource, memory buffer, bitmap handle, TBitmap or TImage or TXImage Object and does ...
by Antonio Linares
Fri Nov 06, 2015 4:59 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN September/Septiembre 2015 (FWH 15.09)
Replies: 52
Views: 14944

Re: Bad quality with GIF (and GDI+)

... functions. oWnd:SayPalBmp( aBmpPal/hBitmap, [aRect (default ClientRect)], [lTransparent (default .t. )], [lStretch/nResizeMode], [nAlpha/lAlpha],[lGray] ) paints the image using the appropriate painting function eg. ABPaint(), TransBmp(),PalBmpDraw() For the sample you sent me, I suggest using ...
by nageswaragunupudi
Wed Nov 04, 2015 10:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bad quality with GIF (and GDI+)
Replies: 84
Views: 9936
Next

Return to advanced search

cron