Progi1984 - Programs & Userlibs

Applications, Games, Tools, User libs and useful stuff coded in PureBasic
User avatar
Progi1984
Addict
Addict
Posts: 806
Joined: Fri Feb 25, 2005 1:01 am
Location: France > Rennes
Contact:

Post by Progi1984 »

Thank you Flype & byo...

Release of October 2007

RVersion->RVersion_4_10.zip
Image
Size : 43Ko

Code: Select all

Description : Permits to get the version or the licence key of an installed software
First Post Edited
User avatar
Progi1984
Addict
Addict
Posts: 806
Joined: Fri Feb 25, 2005 1:01 am
Location: France > Rennes
Contact:

Post by Progi1984 »

Release : January 2008

Wrapper FreeImage ->RWFreeImage_3.9.3.zip
Image
Taille : 571Ko

Code: Select all

Description : Wrapper for FreeImage ( http://freeimage.sourceforge.net/ )
Wrapper PCRE->RWPCRE_7.0.zip
Image
Taille : 65Ko

Code: Select all

Description : Wrapper for PCRE ( http://www.pcre.org/ )
User avatar
Progi1984
Addict
Addict
Posts: 806
Joined: Fri Feb 25, 2005 1:01 am
Location: France > Rennes
Contact:

Post by Progi1984 »

Release : February 2008

REventLog->REventLog_4_10.zip
Image
Size : 85Ko

Code: Select all

Description : It's an userlib for reading and writing in the Windows EventLog.
_______________________

Wrapper LibCurl->RWLibCurl_7.17.1.zip
Size : 683Ko
Image

Code: Select all

Description :  Wrapper forLibCurl 7.17.1 ( http://curl.haxx.se/libcurl/ )
First post updated
User avatar
Andre
PureBasic Team
PureBasic Team
Posts: 2137
Joined: Fri Apr 25, 2003 6:14 pm
Location: Germany (Saxony, Deutscheinsiedel)
Contact:

Post by Andre »

Good work! Several of the userlibs or dll are added now to the related sections on www.PureArea.net! :D
Bye,
...André
(PureBasicTeam::Docs & Support - PureArea.net | Order:: PureBasic | PureVisionXP)
User avatar
Progi1984
Addict
Addict
Posts: 806
Joined: Fri Feb 25, 2005 1:01 am
Location: France > Rennes
Contact:

Post by Progi1984 »

Thank you very much Andre... it's a honor... :D
User avatar
Andre
PureBasic Team
PureBasic Team
Posts: 2137
Joined: Fri Apr 25, 2003 6:14 pm
Location: Germany (Saxony, Deutscheinsiedel)
Contact:

Post by Andre »

Progi1984 wrote:Thank you very much Andre... it's a honor... :D
You're welcome 8)
Bye,
...André
(PureBasicTeam::Docs & Support - PureArea.net | Order:: PureBasic | PureVisionXP)
nicolaus
Enthusiast
Enthusiast
Posts: 456
Joined: Tue Aug 05, 2003 11:30 pm
Contact:

Post by nicolaus »

@Progi1984

Can you please make a example how i draw a jpg image with your freeimage lib?
The example what comes with your lib is nice but is not show the way how we can draw / show a image.

Thanks,
Nico
User avatar
Progi1984
Addict
Addict
Posts: 806
Joined: Fri Feb 25, 2005 1:01 am
Location: France > Rennes
Contact:

Post by Progi1984 »

I think you find your answer here : http://freeimage.sourceforge.net/faq.html

I am at job for some (2-3) weeks... i see that as soon as possible !
User avatar
Progi1984
Addict
Addict
Posts: 806
Joined: Fri Feb 25, 2005 1:01 am
Location: France > Rennes
Contact:

Post by Progi1984 »

I can't wait for a lot of time ! :D

So nice gift :

Code: Select all

IncludeFile "FreeImage_Res.pb"
IncludeFile "FreeImage_Inc.pb"

; PNG Image
;Global dib     = FreeImage_Load(#FIF_PNG, "sample.png", #PNG_DEFAULT)
; JPEG Image
Global dib     = FreeImage_Load(#FIF_JPEG, "exif.jpg", #JPEG_DEFAULT)
Global bitmap  = CreateDIBitmap_(GetDC_(#Null), FreeImage_GetInfoHeader(dib), #CBM_INIT, FreeImage_GetBits(dib), FreeImage_GetInfo(dib), #DIB_RGB_COLORS)

If OpenWindow(0, 0, 0, 245, 105, "Image with FreeImage", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
  CreateGadgetList(WindowID(0))
  ImageGadget(0,  10, 10, 100, 83, bitmap)
  ResizeWindow(0, 100, 100, FreeImage_GetWidth(dib)+20, FreeImage_GetHeight(dib)+20)
  Repeat : Until WaitWindowEvent() = #PB_Event_CloseWindow
EndIf

FreeImage_Unload(dib)
User avatar
Progi1984
Addict
Addict
Posts: 806
Joined: Fri Feb 25, 2005 1:01 am
Location: France > Rennes
Contact:

Post by Progi1984 »

Release of March 2008
RLibPlus_0.1_V4.10.zip
Image
Taille : 370Ko

Code: Select all

The old name for this userlib is LibEditorPlus. This userlib has been upgraded et is applied in others gadgets.
RCam_0.1_V4.10.zip
Image
Taille : 34Ko

Code: Select all

This userlib permits you to use webcams.
User avatar
Progi1984
Addict
Addict
Posts: 806
Joined: Fri Feb 25, 2005 1:01 am
Location: France > Rennes
Contact:

Post by Progi1984 »

From Here
liverol wrote:cool,a powerful gadget!!
i saw something about using language and syntax highlighting functions
in purebasic,i am writting a small code editor and would you please give
some details about using this??appreciate!!
The syntax highlighting is again in version beta. Which details do you want ?
liverol
User
User
Posts: 26
Joined: Sat Jul 14, 2007 3:21 am

Post by liverol »

would you please give a simple example to show how to define a language,and the basic to use the highlighting function?a "all in one"
example will be better! :wink:
liverol
User
User
Posts: 26
Joined: Sat Jul 14, 2007 3:21 am

Post by liverol »

please,that's important for me!!
much appreciate!!
User avatar
Progi1984
Addict
Addict
Posts: 806
Joined: Fri Feb 25, 2005 1:01 am
Location: France > Rennes
Contact:

Post by Progi1984 »

I just see that the Syntax Highlighting Module has a ton of bugs... So thank you for having pushed me to work on it.... so I work on it.
liverol
User
User
Posts: 26
Joined: Sat Jul 14, 2007 3:21 am

Post by liverol »

glad to hear that,so i am waitting for the great work. :wink:
Post Reply