Search found 13 matches

by Serg
Fri Feb 08, 2008 3:43 pm
Forum: GFL SDK
Topic: png -> bmp
Replies: 3
Views: 1588

xnview wrote:like that:

Code: Select all

HBITMAP hBitmap; 
error = gflConvertBitmapIntoDDB( pic, &hBitmap );
Thanks, It's work...
by Serg
Thu Feb 07, 2008 4:35 pm
Forum: GFL SDK
Topic: png -> bmp
Replies: 3
Views: 1588

Anybody, please.... help

In my opinion

error = gflLoadBitmap( ... );
HBITMAP * hBitmap=0;
hBitmap = new HBITMAP[size_file];
error = gflConvertBitmapIntoDDB( pic, hBitmap );

but it's not work...
by Serg
Thu Feb 07, 2008 9:38 am
Forum: GFL SDK
Topic: png -> bmp
Replies: 3
Views: 1588

png -> bmp

I need to convert png to bmp in memory.
How it to do?
by Serg
Mon Nov 05, 2007 8:34 am
Forum: GFL SDK
Topic: gflBrigthness(...) - strange mistake
Replies: 5
Views: 2039

xnview wrote:
Serg wrote:???
It's not gflBrigthness but gflBrightness
I copy this function from help directly,

Code: Select all

GFL_ERROR gflBrigthness(
  GFL_BITMAP * src,  
  GFL_BITMAP ** dst,  
  GFL_INT32 brightness
);
and did not check on mistakes. Next time I'll know....

Thanks. Now It's work.
by Serg
Fri Nov 02, 2007 10:39 am
Forum: GFL SDK
Topic: gflBrigthness(...) - strange mistake
Replies: 5
Views: 2039

???
by Serg
Thu Nov 01, 2007 1:07 pm
Forum: GFL SDK
Topic: gflBrigthness(...) - strange mistake
Replies: 5
Views: 2039

Have you tried do it?
I have changed and get this error again.
by Serg
Wed Oct 31, 2007 5:49 pm
Forum: GFL SDK
Topic: gflBrigthness(...) - strange mistake
Replies: 5
Views: 2039

gflBrigthness(...) - strange mistake


#include "stdafx.h"
#include "gflw.h"


#pragma comment(lib, "libgfl.lib")
#pragma comment(lib, "libgfle.lib")


int main(int argc, char* argv[])
{

gflLibraryInit();

GFL_LOAD_PARAMS load_option;
GFL_SAVE_PARAMS save_params;
GFL_BITMAP *pic;

gflGetDefaultLoadParams( &load_option );
load ...
by Serg
Tue Oct 30, 2007 10:51 pm
Forum: GFL SDK
Topic: gflExportIntoClipboard(...), gflImportFromClipboard(...)
Replies: 9
Views: 2735

to Pierre
thank you very much for your fixed lib. It's work.
by Serg
Mon Oct 29, 2007 7:35 am
Forum: GFL SDK
Topic: gflExportIntoClipboard(...), gflImportFromClipboard(...)
Replies: 9
Views: 2735

to Pierre

What's wrong? Why you don't send me a fixed lib? or don't gime me a reference?
by Serg
Sun Oct 28, 2007 7:16 am
Forum: GFL SDK
Topic: gflExportIntoClipboard(...), gflImportFromClipboard(...)
Replies: 9
Views: 2735

Re: gflExportIntoClipboard(...), gflImportFromClipboard(...)

I've sent you a fixed library
I didn't get your fixed library yet. May be place on any hosting, and then give me the reference?
by Serg
Sat Oct 27, 2007 2:30 pm
Forum: GFL SDK
Topic: gflExportIntoClipboard(...), gflImportFromClipboard(...)
Replies: 9
Views: 2735

Re: gflExportIntoClipboard(...), gflImportFromClipboard(...)

I've sent you a fixed library
Ok. Thanks. I'm waiting...
Has not come yet.
by Serg
Sat Oct 27, 2007 6:52 am
Forum: GFL SDK
Topic: gflExportIntoClipboard(...), gflImportFromClipboard(...)
Replies: 9
Views: 2735

Re: gflExportIntoClipboard(...), gflImportFromClipboard(...)

Perhaps gflBrightness() - just a guess?
oh, it's my fault. Now it's work. Thanks.

And how about the first question?
by Serg
Fri Oct 26, 2007 11:25 pm
Forum: GFL SDK
Topic: gflExportIntoClipboard(...), gflImportFromClipboard(...)
Replies: 9
Views: 2735

gflExportIntoClipboard(...), gflImportFromClipboard(...)

Hi,
1.

#include "stdafx.h"
#include "gflw.h"


#pragma comment(lib, "libgfl.lib")
#pragma comment(lib, "libgfle.lib")


int main(int argc, char* argv[])
{

gflLibraryInit();

GFL_LOAD_PARAMS load_option;
GFL_BITMAP *pic;

gflGetDefaultLoadParams( &load_option );
load_option.FormatIndex ...