Karinha, Como es una imagen ".Png" en la TImage se usa con LoadFromMemory y se me olvido quitarlo cuando probé con la TXImage. Gracias por el dato, pero igual, sigo teniendo el mensaje de "Format image not supported"
Hi, I was counting a recordset from the MariaDB database. From this recordset, I load the bitmap into the TImage control using the method :LoadFromMemory(). Everything works fine. However, the downloaded bitmap looks bad. I don't know what the reason is, but the bitmap downloaded from the file ...
... FW_SaveImage(oDBF->FOTO,"C:\FOTOS\"+Alltrim(oDBF->NOMBRE)+".PNG" ) He intentado recuperando la imagen con LoadFromMemory, LoadImage, Setbmp Gracias por la ayuda Is oDBF an object? TDatabase object? In that case, it should be oDBF:FOTOIf you are directly ...
... FW_SaveImage(oDBF->FOTO,"C:\FOTOS\"+Alltrim(oDBF->NOMBRE)+".PNG" ) He intentado recuperando la imagen con LoadFromMemory, LoadImage, Setbmp Gracias por la ayuda
Hi Fivewinners Which are the equivalents of Image:LoadFromMemory and Image:LoadBmp() I Used them with FreeImage.dll, now I want to test xImage to replace these lines oDbFot:=oSvr:Rowset("select IMAGEN from photos where CODIGO='" ...
Hi Marc, When you upload an image file into database you can use directly using Image object through :LoadFromMemory( oQry:Picture ) method of image class if want to save to disk you can use this example oQry is a query from table with flowing columns finename and file blob ...
... de la imagen ejm: c:/ruta/imagen.bmp Para cargar la imagen lo hago asi: REDEFINE IMAGE ::oBmp:Foto ID 155 OF ::odlg ADJUST TRANSPARENT ::oBmp:Foto:LoadFromMemory(::vGet:Foto) en ::vGet:Foto esta la inicializado con la imagen de la BD Mysql ejm: ::vGet:Foto := oTabla:foto Espero sea de su ayuda
... Image oImg1 ID 81 OF oDlgMain adjust on click fNavegar(_JpgWebPublicidad) if Len( cJpg1 := cResToStr( "JPG_1", RT_RCDATA ) ) != 0 oImg1:LoadFromMemory( cJpg1 ) else msginfo('Error, no se pudo cargar la imagen '+cJpg1) endif funciona simple y al 100%. Si alguno de los foristas puede mejorar ...
Estimado Manuel Aprovechando el post. Es posible utilizando Tgdiplus excluir freeimage.dll extrayendo la imágen de un campo BLOB como lo hace LoadFromMemory() para poder mostrarla? Gracias. Saludos, Adhemar No lo he intentado nunca :( . En teoria cambiando LoadFromMemory() por ImagePNGFromStr( ...
Carlos, agregando el FileStr() y el LoadFromMemory, funciona, pero note algo. mi imagen pesa 19.6kb y almacenada ocupa 40k, imagenes grandes no me almacena, pesa 1.94Mb, imagino que debe ser alguna configuracion del mysql para almacenar imagenes ...
Paco, Massimo, I tested, saving the image to a TEMP-file. Now I is working like : 1.) I load the original 2.) I select from the combobox the drawing style. 3.) BEFORE I perform the painting-selection with a left mouseclick on the image, -- I save the draw-status to a TEMP-file 4.) In case I don't li...