Search found 79 matches: dib

Return to advanced search

simple image viewer - sample

... is not defined in the provided code. 7. **GetImage Function**: This function allows the user to select an image file of various formats (bmp, dib, pcx, jpg, gif, tga, rle) to display. The chosen image is then loaded into the image display. 8. **PrintImage Function**: This function prints the ...
by Otto
Fri Jun 09, 2023 6:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: simple image viewer - sample
Replies: 3
Views: 289

Re: Fwh64 connect mysql problem

... * SAMPLES\FwDbg.dll FiveWin debugger resources * SAMPLES\Report\Preview.dll FiveWin printing preview resources * nview16.dll JPG, JIF, GIF, BMP, DIB, RLE, TGA, PCX support ==> For 32 bits only * bwcc32.dll Borland Windows Custom Controls 32 bits * rc2dll32.bat Batch to create a DLL using a ...
by richard-service
Sat Feb 02, 2019 1:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fwh64 connect mysql problem
Replies: 5
Views: 1114

problem FWH 7.1 with XHB.com

... Creating object: t.EXP Creating library: t.LIB xLINK: error: Unresolved external symbol '_RegisterResource referenced from FiveHCM.lib(DIB.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_MNUCOLORS referenced from Fivehmx.lib(memoedit.obj)'. xLINK: error: Unresolved external ...
by kajot
Sat Feb 04, 2017 6:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem FWH 7.1 with XHB.com
Replies: 7
Views: 1304

Re: Nuevo FWH 16.11

Luis, Por favor modifica el código fuente de source\winapi\dib.c de esta forma: HGLOBAL DibRead( LPSTR szDibName ){   HFILE   hFile;   LONG    lSize;   HGLOBAL hDib = 0;   BITMAPFILEHEADER ...
by Antonio Linares
Sun Dec 18, 2016 10:48 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo FWH 16.11
Replies: 28
Views: 4902

Method insertpicture problem : RESOLVED

... i use this function from mypad METHOD RTFPicture() CLASS TmyPad LOCAL cFile := cGetFile( "Bitmap (*.bmp)| *.bmp|" + ; "DIB (*.dib)| *.dib|" + ; "PCX (*.pcx)| *.pcx|" + ; "JPEG (*.jpg)| *.jpg|" + ; "GIF (*.gif)| *.gif|" + ; "TARGA ...
by Silvio.Falconi
Tue Apr 26, 2016 9:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Method insertpicture problem : RESOLVED
Replies: 3
Views: 563

Know if is an image file

... .OR. UPPER( RIGHT( cFile, 3 ) ) == "RLE" ; .OR. UPPER( RIGHT( cFile, 3 ) ) == "PNG" ; .OR. UPPER( RIGHT( cFile, 3 ) ) == "DIB" But the type of file image are many and many other I need all image Freeimage Know I saw there is a function on Image class IsImageData( cBuf ...
by Silvio.Falconi
Fri Jan 15, 2016 11:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Know if is an image file
Replies: 2
Views: 619

Color de Bit

... a GetPixel(), pero muuucho más rápido, cientos de veces más rápido, la segunda no tiene equivalencia. La diferencia es que trabajan con bitmaps (o DIB's) de 24 o 32 bits de profundidad de color. Ventaja? bueno en mi aplicación "Selector de color": http://forums.fivetechsupport.com/viewtopic.php?f=6&t=30195 ...
by antolin
Mon Mar 30, 2015 8:24 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Color de Bit
Replies: 6
Views: 1480

Re: documentacion de funciones gdi+

... , ¿ has mirado el enlace http://leandroascierto.com/blog/category/graficos/ ? . Tiene un codigo para cargar una imagen en un formato ( “BMP, DIB, JPG, JPEG, JPE, JFIF, GIF, PNG, TIF, TIFF, EMF, WMF, ICO, CUR”. ) y pasarla a otro usando gdi+ que es buenisima .. http://leandroascierto.com/blog/modulo-para-convertir-imagenes-de-un-formato-a-otro-gdi/
by mastintin
Wed Nov 19, 2014 2:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: documentacion de funciones gdi+
Replies: 29
Views: 14233

Re: Pregunta organización de archivos

... Text color nColPane Background color nOrient Orientation nTrans Transparent background (1) or not (0) Only for type Image cFile Image file (BMP, DIB, JIF, JPG, PCX, RLE, or TGA) Only for type: LineUp, LineDown, LineHorizontal, LineVertical, Rectangle or Ellipse nColor pen color nColFil fill color ...
by lucasdebeltran
Mon Sep 08, 2014 7:01 am
 
Forum: EasyReport, EasyDialog y EasyPreview
Topic: Pregunta organización de archivos
Replies: 4
Views: 2589

Re: How to keep a existing alpha-channel, saving a bitmap ?

... ( maybe something can be used ) : FreeImage_GetTransparencyTable 1 4 8 DLL_API BYTE * DLL_CALLCONV FreeImage_GetTransparencyTable(FIBITMAP *dib); Returns a pointer to the bitmap’s transparency table. Only palletised bitmaps have a transparency table. High-color bitmaps store the transparency ...
by ukoenig
Sun Jun 22, 2014 7:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to keep a alpha-channel, save and resize a bitmap
Replies: 5
Views: 1878

MakeThumbNail en FreeImage

... implementar hacer un thumbnail con freeimage, lo he intentado pero no se como guardar el archivo destinol static FIBITMAP MakeThumbnail( FIBITMAP dib, int max_pixel_size, bool convert ) dib Type: FreeImageAPI.FIBITMAP Handle to a FreeImage bitmap. max_pixel_size Type: System.Int32 Thumbnail square ...
by carlos vargas
Thu Dec 19, 2013 2:54 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: MakeThumbNail en FreeImage
Replies: 7
Views: 1718

Re: Also for Image

How save a image on the extension seletected from finale user local cFile := cGetFile( "Bitmap (*.bmp)| *.bmp|" + ; "DIB (*.dib)| *.dib|" + ; "PCX (*.pcx)| *.pcx|" + ; "JPEG (*.jpg)| *.jpg|" + ; "GIF (*.gif)| *.gif|" + ; "TARGA (*.tga)| ...
by Silvio.Falconi
Tue Nov 12, 2013 8:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Also for Image
Replies: 5
Views: 1967

Re: Create a bitmap

... Maybe possible to add => FreeImage_Rescale ? I used NCONVERT for the moment. FreeImage_Rescale(FIBITMAP *dib, int dst_width, int, dst_height, FREE_IMAGE_FILTER filter) DLL32 FUNCTION IMGRESCALE( ........ This function performs resampling (or scaling, zooming) ...
by ukoenig
Sat Nov 09, 2013 9:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a bitmap
Replies: 4
Views: 1764

Re: RPreview mal en xp

Carlos: Pasó 1 hBmp No Valido Pasó 2 hDib No Valido Siguiento tu ejemplo agregué: cBuf         := MemoRead( cEMF )   oRect        := TRect():New( 0, 0, Bin2L( SubStr( cBuf, 21, 4 ) ) / 2, ;                ...
by rolando
Fri Oct 11, 2013 5:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: RPreview mal en xp - SOLUCIONADO (a medias)
Replies: 52
Views: 11457

Re: RPreview mal en xp

Carlos,

"Dib No Valido"

No entiendo de "C" pero esto me hace pensar que falla en la función "HB_FUNC( DIBFROMBITMAP )" contenida en el "dibbmp.c"

Como decía el Chapulín Colorado: Y ahora, ¿Quién podrá ayudarme?.

Gracias.

Rolando :D
by rolando
Fri Oct 11, 2013 4:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: RPreview mal en xp - SOLUCIONADO (a medias)
Replies: 52
Views: 11457
Next

Return to advanced search