Search found 185 matches: saybitmap

Return to advanced search

Re: Calculate total pages

... Setup():VORSCHAUTXT , oPrnFont  )                        oDevice:SayBitmap( Setup():aQRCodePosition[ 1 ], Setup():aQRCodePosition[ 2 ],;            ...
by Otto
Fri Nov 24, 2023 6:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Calculate total pages
Replies: 32
Views: 5878

Re: QR-CODE

... cJason=StrToBase64( cJason ) cOrigen=cOrigen+cJason cDestino:="FactQR.bmp" //"FactQR.jpg" QRCode(cOrigen,cDestino) SayBitmap(25.0, 16.0, 2.5, 2.5, ".\factQR.bmp", oPrn ) // 1=altura, 2=márgen, 3 y 4 tamaño Esta función de código QR es la que estuve usando ...
by pedroluis
Thu Apr 27, 2023 6:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: QR-CODE
Replies: 22
Views: 1759

Help for xbrowse report bSetUp

... my printouts when I compile it does not accept the line that I put in bold how can I fix it? bSetUp := < |oRep, Brw, n | bImage := {|oRep| oRep:SayBitmap(0.5, 7, cLogo)} bStart := {|oRep| oRep:bStartPage := bImage} bInit := {|| oBrw:oDbf:GoTop()} bSkip := {|| (IF(!oBrw:oDbf:Eof(),oBrw:oDbf:Skip(),nil),IF(oRep:nCounter ...
by Silvio.Falconi
Sat Mar 18, 2023 10:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help for xbrowse report bSetUp
Replies: 3
Views: 377

xbrowse report setup

... If I wish add a transparent image on background ? how I can do ? I tried with (but not run ) bSetUp := < |oRep, Brw, n | bImage := {|oRep| oRep:SayBitmap(0.5, 7, "NEW_REC")} bStart := {|oRep| oRep:bStartPage := bImage} if n == 2 oRep:CellView() return nil endif return 2 >
by Silvio.Falconi
Thu Mar 02, 2023 11:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse report setup
Replies: 0
Views: 194

Re: Consejos sobre el uso de las clases TImprime y TUtilPrn

... , ximage ,::oPrinter ) ::oPrinter:SayImage( xCor[1],xCor[2], xbmp , yCor[1] ,yCor[2],nRaster ) DeleteObject( xBmp ) ELSE * se for BMP ::oPrinter:SayBitmap(xCor[1],xCor[2],xImage, yCor[1],yCor[2],nRaster ) ENDIF RETURN NIL Saludos Fernando Espinoza A.
by nanoespinoza
Tue Nov 15, 2022 12:42 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consejos sobre el uso de las clases TImprime y TUtilPrn
Replies: 9
Views: 914

Re: Lineas Adicionales al Final de REPORT

... mi proxima consulta. Quiero imprimir el logo de la empresa en el encabezado del reporte, ya vi esto que colocaste alli: ON STARTPAGE oRep:SayBitmap(.1,.1,"LOGO.BMP",.5,.5) ahora mi duda es: ¿se comporta igual en todas las impresoras sin importar su resolucion? y en caso de que ...
by JoseAlvarez
Sun Nov 28, 2021 12:40 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Lineas Adicionales al Final de REPORT
Replies: 3
Views: 319

Re: oPrn:SayBitmap

Perfecto, muchas gracias.

Saludos
Jorge
by jpcavagnaro
Wed Jun 30, 2021 7:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: oPrn:SayBitmap
Replies: 2
Views: 427

oPrn:SayBitmap

Hola buenas noches, como puedo hacer para ajustar la imagen al tamaño que quiero.

Cuando la muestro por pantalla con ADJUST lo hago pero para imprimir no encuentro la forma.

Saludos
Jorge.
by jpcavagnaro
Tue Jun 29, 2021 10:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oPrn:SayBitmap
Replies: 2
Views: 427

Re: Imprimir imagenes en report

... ... oPict:LoadFromString( HB_Base64Decode( oQuery:FieldGet( "ENTRADA" ) ) ) // Se lee desde la tabla MySql con TDolphin ... oReporte:SayBitmap( aCoors[ 1 ], aCoors[ 2 ] + 1.0, oPict, 1.2, 1.2, RPT_CMETERS, , 1 ) // Se imprime la imagen Efectivamente estaba funcionando todo correcto ...
by EBM
Fri Mar 19, 2021 9:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Imprimir imagenes en report
Replies: 3
Views: 669

Re: PROBLEMAS PREVIEW CLASE TPRINT CON ACTUALIZACION WINDOWS

... on the issue. We need to go ahead. We basically have 3 image rendering methods in printer class: 1) SayBitmp(...) 2) SayImage(...) 3) PrintImage() SayBitmap() works even now, though it can not handle transparencies and alpha images. Quality is much less in case of non-bmp images like jpg, png, ...
by nageswaragunupudi
Fri Mar 19, 2021 8:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: PROBLEMAS PREVIEW CLASE TPRINT CON ACTUALIZACION WINDOWS
Replies: 28
Views: 3631

Imprimir imagenes en report

... lo imprime bien aunque lImageLegacy este en .F. Alguna idea de como solucionar este problema? La impresion de la imagen la hago con oReporte:SayBitmap( ... ) FWH 1905 Saludos! Eduardo Borondón Muñiz
by EBM
Fri Mar 19, 2021 6:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Imprimir imagenes en report
Replies: 3
Views: 669

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

To add oPrn:Sayimage(…) as this is better quality as oPrn:Saybitmap(...) We recommend using oPrn:PrintImage(...) introduced in FWH1510 and enhanced in FWH1604 for all future developments. This method supersedes both the old methods SayBitmap() and SayImage(), ...
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

Mr. Nages please: HARU PDF Bugs/Extensions

Not functioning:
Code: Select all  Expand view
oPrn:say(nRow,nCol,cText,oFont,,,,1)
oPrn:say(nRow,nCol,cText,oFont,,,,2)


To add in Tpdf:
Code: Select all  Expand view
  DATA nXoffset INIT 0
   DATA nYoffset INIT 0


To add oPrn:Sayimage(…) as this is better quality as oPrn:Saybitmap(...)
by byte-one
Sun Jan 26, 2020 2:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Nages please: HARU PDF Bugs/Extensions
Replies: 21
Views: 5563

TREPORT con imágenes

... QR, Ahora necesito realizar un reporte con las imágenes Bitmaps generados desde los códigos QR Estaré evaluando mediante el uso del method oReport:SayBitmap      ACTIVATE REPORT oReport;              WHILE !A->(Eof());    ...
by jnavas
Sat Dec 15, 2018 9:03 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TREPORT con imágenes
Replies: 3
Views: 799
Next

Return to advanced search