Search found 59 matches: alphabmp

Return to advanced search

Re: BtnBmp and oPopup

>FW_DrawImage( hDC, "c:\fwh\bitmaps\alphabmp\ichat.bmp", {::nHeight-30, ::nWidth-25, ::nHeight - 10, ::nWidth-5}, .t. ) for me it's no good perhaps... data hBmpPop on METHOD Paint() CLASS TBtnBmp if ::oPopup != nil if ::hBmpPop != ...
by Silvio.Falconi
Wed Jun 07, 2023 8:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: BtnBmp and oPopup
Replies: 4
Views: 408

Re: MENUITEM RESOURCE transparency ?

... with MENU which IHMO do not hamdle Transparency please tell me a IMAGE from c:\fwh\bitmaps\16x16\ c:\fwh\bitmaps\32x32\ c:\fwh\bitmaps\AlphaBmp\ c:\fwh\bitmaps\backgrnd\ c:\fwh\bitmaps\hires\ c:\fwh\bitmaps\metro\ c:\fwh\bitmaps\pngs\ c:\fwh\icons\hires\ which will work, thx p.s. which ...
by Jimmy
Thu Nov 03, 2022 2:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MENUITEM RESOURCE transparency ?
Replies: 28
Views: 1311

Re: Painting alpha blended bmp on windows

There is a function ABPaint( hDC := GetWindowDC( hWnd ), nLeft, nTop, oBmp:hBitmap ) sample testab.prg DEFINE BITMAP oBmp FILENAME "..\bitmaps\AlphaBmp\Trash.bmp" ... ... ACTIVATE WINDOW oWnd ; ON PAINT ABPaint( hDC, 10, 10, oBmp:hBitmap, 220 ) // 0-255 transparency level or You can use ...
by ukoenig
Fri Jan 15, 2021 2:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Painting alpha blended bmp on windows
Replies: 2
Views: 400

Re: Insert a logo image on a background image.

... to paint your overlay and then use 2) FW_SaveImage( hBmp, cImageFile ) to save the image as bmp,jpg or png In this sample, we overlay \fwh\bitmaps\alphabmp\calendar.bmp over \fwh\bitmaps\olga1.jpg and then save the result as overlay.png. function ImageOverlay()   local aImage1, aImage2, ...
by nageswaragunupudi
Mon Mar 04, 2019 4:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Insert a logo image on a background image.
Replies: 12
Views: 2284

How to use PNG in ButtonBar from RC into EXE-Solved

... by "Pelles C for Windows, version 8.00". #include <windows.h> #include <commctrl.h> #include <richedit.h> #define ALPHABMP 10 TB_TOP32x ALPHABMP "BmpIcon/Png/ButtonBar/GoFirstData32.png" DEFINE BUTTON oDlgBtn[1]  OF ::oDlgBar                   ...
by richard-service
Fri Dec 14, 2018 4:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to use PNG in ButtonBar from RC into EXE-Solved
Replies: 4
Views: 1405

Re: How can I use image on image with all transparent?

... MEMOREAD( <imagefile> ) }, .t. ) To RC rc file If the logo is non-alpha bmp LOGO BITMAP "filename" if the logo is alphabmp or any other type like jpg, etc LOGO 10 "filename"
by nageswaragunupudi
Fri Sep 28, 2018 8:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How can I use image on image with all transparent?
Replies: 3
Views: 756

Re: an image on btnbmp and other

... FW_SayText( oWnd, cText, aRect, cAlign, oFont, nClrText, nClrBack, lBorder, nAddStyle )   // oWnd or hDC ? FW_DrawImage( hDC, "c:\fwh\bitmaps\alphabmp\task.bmp", { 2, 30, 34, 62 } ) }
by cnavarro
Wed May 23, 2018 7:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: an image on btnbmp and other
Replies: 21
Views: 3946

Re: New FWH 18.01

... I only changed the image from @ 1, 1 BITMAP oBmp FILENAME "..\bitmaps\fw.bmp" OF oWnd to @ 1, 1 BITMAP oBmp FILENAME "..\bitmaps\alphabmp\trash.bmp" OF oWnd oBmp:lTransparent := .T. 1. compiled with 18.1 2. compiled with 17.12 http://www.pflegeplus.com/IMAGES/Update3.jpg ...
by ukoenig
Sat Feb 17, 2018 12:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 18.01
Replies: 11
Views: 2274

Re: Problem using images in TTitle from RESOURCE ? l

... 138 ), nRGB( 59, 60, 62 ) } } @ 25, 25 TITLETEXT OF oTitle TEXT "Prueba" FONT oFont @ 5, 5 TITLEIMG OF oTitle BITMAP "..\bitmaps\AlphaBmp\explorer.BMP" ; SIZE 16, 16 ANIMA; ACTION MsgAlert ( "Button-action" ) ACTIVATE DIALOG oDlg CENTERED oFont:End() return nil ...
by ukoenig
Mon May 29, 2017 11:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem using images in TTitle from RESOURCE ?
Replies: 5
Views: 1401

Re: Button Bar JPG or PNG

Rick, I add these resources with a code editor ( text ) https://s15.postimg.org/di6m98faj/resedit1.png #define ALPHABMP 10 olga1 ALPHABMP "../bitmaps/olga1.jpg" files ALPHABMP "../bitmaps/alphabmp/files.bmp" To enjoy family and cookout
by cnavarro
Thu Nov 03, 2016 1:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Button Bar JPG or PNG
Replies: 15
Views: 2853

Re: Button Bar JPG or PNG

... is 24 bit .. Borland will not compile 32 bit image ? Rick Lipkin Rick, if you define you image of 32 bits: files BITMAP "../bitmaps/alphabmp/files.bmp" Borland fails to compile the resource, but, if you define your image 32 bits so: files 10 "../bitmaps/alphabmp/files.bmp" ...
by cnavarro
Thu Nov 03, 2016 1:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Button Bar JPG or PNG
Replies: 15
Views: 2853

Re: Function to download a defined file from a homepage ?

... download them with just one line like : ShellExecute( oDlg1, ,"http://www.pflegeplus.com/DOWNLOADS/Trtext1zip", , , 5 ) // download of alphabmp-sample regards Uwe :D
by ukoenig
Thu Apr 21, 2016 4:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Function to download a defined file from a homepage ?
Replies: 31
Views: 15328

Re: Bad quality with GIF (and GDI+)

... ) ) ) { newImage = new Bitmap( nWidth, nHeight, ( pf == PixelFormat32bppRGB ? PixelFormat32bppPARGB : pf ) ); if ( pf == PixelFormat32bppRGB ) // AlphaBmp: Need to do additional work .... by now there have been no trouble for it. another solution is to put a exception for gif.
by mastintin
Tue Nov 03, 2015 1:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bad quality with GIF (and GDI+)
Replies: 84
Views: 10031

Re: Cargar imagen desde URL

...    oImage:Refresh()  endifReturn nil  Gracias por su tiempo y ayuda. Saludos, Adhemar ¿ La imagen es un alphabmp ? . ¿ Sabes que tipo de imagen es ? png ?
by mastintin
Tue May 12, 2015 8:12 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cargar imagen desde URL
Replies: 8
Views: 696

15.02 BUTTONBARs

... reduces the need to maintain bmp files of different sizes of the same image. A small example showing a buttonbar built with ICO,EXE,GIF,PNG,AlphaBmp and JPG. http://imagizer.imageshack.us/v2/xq90/673/k4zcPH.jpg function AnyImageBtn()   local oWnd, oBar, oFont   DEFINE ...
by nageswaragunupudi
Mon Feb 23, 2015 9:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: 15.02 BUTTONBARs
Replies: 5
Views: 1341
Next

Return to advanced search