Search found 186 matches: saybitmap

Return to advanced search

Re: puedo imprimir un bitmap en TReport ?

Marcelo: Agradecido con tu respuesta, he intentado con oReporte:SayBitMap() pero la verdad es que es muy complicado, al menos para mi, calcular la ubicación del bitmap en el reporte pues las coordenadas que se indican están en CMS o INCHES, yo esperaba que ...
by Armando
Wed Jan 06, 2016 6:57 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: puedo imprimir un bitmap en TReport ?
Replies: 7
Views: 1057

New FTDN October/Octubre 2015 (FWH 15.10)

... Accepts any image file, resource, memory buffer, bitmap handle, TBitmap or TImage or TXImage Object and does not require freeimage.dll. 3) SayBitmap method improved. Now SayBitmap also accepts any image file, resource, memory buffer or bitmap handle and does not require freeimage.dll * ...
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: 930

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

... Accepts any image file, resource, memory buffer, bitmap handle, TBitmap or TImage or TXImage Object and does not require freeimage.dll. 3) SayBitmap method improved. Now SayBitmap also accepts any image file, resource, memory buffer or bitmap handle and does not require freeimage.dll * ...
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: 15374

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

... Accepts any image file, resource, memory buffer, bitmap handle, TBitmap or TImage or TXImage Object and does not require freeimage.dll. 3) SayBitmap method improved. Now SayBitmap also accepts any image file, resource, memory buffer or bitmap handle and does not require freeimage.dll * ...
by Antonio Linares
Wed Oct 28, 2015 11:37 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN September/Septiembre 2015 (FWH 15.09)
Replies: 52
Views: 15374

Re: Save signature BMP in DBF ?

... of that bitmap file into a memo field in a .dbf file 3) Later I will go to that record and I want to extract the bitmap to then use with oPrn:SayBitMap(nRow, 50*nCsp, cSigFil,nCsp*35, nRsp*4 ) where oPrn is from the printer class, and cSigFil is the bitmap. Tim
by TimStone
Mon Oct 05, 2015 8:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Save signature BMP in DBF ?
Replies: 12
Views: 2989

Re: EasyReport printing bmp files

... ; ::ToPix( oItem:nWidth, .F. ), ; ::ToPix( oItem:nHeight, .T. ) ) oImg:End() I changed to: if UPPER( cFileExt( cText ) ) = "BMP" ::oPrn:SayBitmap( ::ToPix( nItemTop, .T. ), ; ::ToPix( ::nLeftMargin + oItem:nLeft, .F. ), ; cText, ; ::ToPix( oItem:nWidth, .F. ), ; ::ToPix( oItem:nHeight, ...
by Otto
Sat Sep 12, 2015 10:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: EasyReport printing bmp files
Replies: 12
Views: 2344

EasyReport printing bmp files

Hello, I had problems printing larger bmp-files with EasyReport. Now I check if the image is a bmp file and if yes I use method SayBitmap. Now it is working fine. I changed method PrintItem in VRD.prg like this: if UPPER( cFileExt( cText ) ) = "BMP"        ::oPrn:SayBitmap( ...
by Otto
Fri Sep 11, 2015 9:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: EasyReport printing bmp files
Replies: 12
Views: 2344

Re: Report y Saybitmap

... a imprimir3" ), sin tener que indicar la línea en la que quiero hacerlo. Sin embargo para poner una imagen con oReport:SayBitmap sí que tengo que indicar la línea (según los parámetros de SayBitmap( nRow, nCol, cBitmap, nWidth, nHeight, nScale, nAlphaLevel ). Si ignoro ...
by Manuel Aranda
Sat Nov 29, 2014 12:51 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Report y Saybitmap
Replies: 2
Views: 611

Re: Report y Saybitmap

Creo que la clase sólo modifica el valor de oReport:nRow en las llamadas a oReport:EndLine() y no en oReport:NewLine()
A ver si te sirve de algo, por que tampoco entiendo bien lo que te pasa.
by cnavarro
Sat Nov 29, 2014 10:32 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Report y Saybitmap
Replies: 2
Views: 611

Report y Saybitmap

... )oReport:NewLine()oReport:EndLine()oReport:NewLine()oReport:NewLine()oReport:NewLine()oReport:SayBitmap(oReport:nRow,3,"IMAGEN.BMP",3,4,RPT_CMETERS)oReport:lFinish := .t.//RETURN NIL  Ahora lo que necesito es incluir una imagen ...
by Manuel Aranda
Sat Nov 29, 2014 7:14 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Report y Saybitmap
Replies: 2
Views: 611

Re: oPrn:SayBitmap with resource ?

... GetResources( ) , "INOK" ), LoadBitMap( GetResources( ), "INNO" ) } Now I want to print out that checkmark so I use: oPrn:SayBitmap( nRow, 5 * nCsp, aIBmp[1] ) In theory this should work. ( I have no problem printing external resources ). It doesn't. Do I need to get the ...
by Enrico Maria Giordano
Fri Oct 25, 2013 12:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oPrn:SayBitmap with resource ?
Replies: 2
Views: 810

Re: oPrn:SayBitmap with resource ?

Tim

Consider this code .. you will have to use FreeImage.dll
Code: Select all  Expand view

DEFINE IMAGE oImg RESOURCE "DOG"
      oPrint:SayImage( Line, (oPrint:nHorzRes()*.80), oImg,800,600 )
 


Rick Lipkin
by Rick Lipkin
Thu Oct 24, 2013 10:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oPrn:SayBitmap with resource ?
Replies: 2
Views: 810

oPrn:SayBitmap with resource ?

... GetResources( ) , "INOK" ), LoadBitMap( GetResources( ), "INNO" ) } Now I want to print out that checkmark so I use: oPrn:SayBitmap( nRow, 5 * nCsp, aIBmp[1] ) In theory this should work. ( I have no problem printing external resources ). It doesn't. Do I need to get the ...
by TimStone
Thu Oct 24, 2013 9:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oPrn:SayBitmap with resource ?
Replies: 2
Views: 810

SOURCE FOR IMAGE WITH *.BMP *.EMF *.GIF *.ICO *.JPG *.PNG *

... oPrn local nZoom:=oBmp:Zoom() local anchura:=oBmp:nWidth()*nZoom local altura :=oBmp:nHeight()*nZoom PRINT oPrn NAME "BITMAP" PAGE oPrn:SayBitmap(0,0,bmp,anchura,altura) ENDPAGE ENDPRINT return nil Function AjustaZoom(oBmp,cAccion,oSay) local nZoom:=oBmp:Zoom() do case case cAccion == ...
by HATHAL
Sun Oct 06, 2013 8:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Cover Flow
Replies: 10
Views: 5638

Re: Printing graphics.

if you captured an image (bmp , jpg) you can print with the printer object

oprn:saybitmap or oprn:sayimage

as long as your thermal printer has a windows driver, basically they all do

Hth

Richard
by Richard Chidiak
Mon Jun 03, 2013 2:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Printing graphics.
Replies: 1
Views: 547
PreviousNext

Return to advanced search