creation bitmaps

Post Reply
User avatar
Silvio.Falconi
Posts: 4956
Joined: Thu Oct 18, 2012 7:17 pm

creation bitmaps

Post by Silvio.Falconi »

is it possible to create small bitmaps size 16 files?
Having two colors (color1 and color2) and making the gradient of these two colors, create a small bitmap and save in bitmap format?
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
User avatar
ukoenig
Posts: 3981
Joined: Wed Dec 19, 2007 6:40 pm
Location: Germany
Contact:

Re: creation bitmaps

Post by ukoenig »

A gradientpainter that can save / create bitmaps from 64x64 to 16x16
gradientstyle horizontal or vertical with selected color-position
two colors (color1 and color2) and making the gradient of these two colors
Image

is that the style You need :?:
Since 1995 ( the first release of FW 1.9 )
i work with FW.
If you have any questions about special functions, maybe i can help.
User avatar
Silvio.Falconi
Posts: 4956
Joined: Thu Oct 18, 2012 7:17 pm

Re: creation bitmaps

Post by Silvio.Falconi »

no
i have two colors ok ?
i not have the image or bitmap ok?
i wish create a image or bitmap
and save it as a file ok ?
this file must show a small box filled with the gradient made with two colors...

i hope you understood me
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
User avatar
nageswaragunupudi
Posts: 8017
Joined: Sun Nov 19, 2006 5:22 am
Location: India
Contact:

Re: creation bitmaps

Post by nageswaragunupudi »

Code: Select all

   local hBmp
   local nClr1    := CLR_HRED
   local nclr2    := CLR_WHITE
   local nWidth   := 16
   local nHeight  := 16

   hBmp  := FW_MakeYourBitmap( nWidth, nHeight, { |hDC,w,h| GradientFill( hDC, 0, 0, h, w, {{ 1, nClr1, nClr2}} ) } )
   FW_SaveImage( hBmp, "redwhite.bmp" )
   DeleteObject( hBmp )

   ximage( "redwhite.bmp" )  // verify
 
Regards

G. N. Rao.
Hyderabad, India
User avatar
Silvio.Falconi
Posts: 4956
Joined: Thu Oct 18, 2012 7:17 pm

Re: creation bitmaps

Post by Silvio.Falconi »

thanks Rao
I remember there was something of it but Inot found the test on my hard diskes.
thanks
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
User avatar
ukoenig
Posts: 3981
Joined: Wed Dec 19, 2007 6:40 pm
Location: Germany
Contact:

Re: creation bitmaps

Post by ukoenig »

Silvio,

the painter uses the same functions but with a big difference

1. visual design of the images
2. multiple images can be saved in one sesson ( file-counter ) like Img16_1.bmp, Img16_2.bmp ...
3. filesizes from 16x16 to 64x64 are possible
4. displayed RGB-colorvalues

Download
http://www.pflegeplus.com/DOWNLOADS/Grdpaint1.zip

new design with some improvements

usage :
it starts with white colors
1. select the 1. color from the browser ( to be defined with the radio )
with the displayed gradient on the righthandside You can adjust the brightness
2. select the second color
with the slider You can adjust the color-position
3. select the image-output-size
4. select save
5. create the next bmp
( filenames will have a running number and saved in the directory < MYBITMAP > )

Image

regards
Uwe :D
Since 1995 ( the first release of FW 1.9 )
i work with FW.
If you have any questions about special functions, maybe i can help.
User avatar
Silvio.Falconi
Posts: 4956
Joined: Thu Oct 18, 2012 7:17 pm

Re: creation bitmaps

Post by Silvio.Falconi »

Uwe,
thanks but I need for another questions

Menupopup

Image

Combobox draitem
Image
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
User avatar
Otto
Posts: 4470
Joined: Fri Oct 07, 2005 7:07 pm
Contact:

Re: creation bitmaps

Post by Otto »

Silvio, very nice screens.
Best regards
Otto
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org

********************************************************************
User avatar
Silvio.Falconi
Posts: 4956
Joined: Thu Oct 18, 2012 7:17 pm

Re: creation bitmaps

Post by Silvio.Falconi »

after two year I Init to have a stable release!!!
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: creation bitmaps

Post by Antonio Linares »

Silvio is already a FiveWin Master...

very good !!!
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply