Search found 31 matches

by Grincheux
Sat Dec 19, 2009 5:49 am
Forum: GFL SDK
Topic: Crash when calling gflFreeFileInformation
Replies: 7
Views: 2059

Re: Crash when calling gflFreeFileInformation

I have the same problem
All the returned values are checkecked and the function crashes...

GFL_LoadImageFromFile PROC __lpszFileName:LPSTR
LOCAL _hBitmap:HBITMAP
LOCAL _Infos:GFL_FILE_INFORMATION
LOCAL _lpImage:LPIMAGE_INFOS

mov eax,__lpszFileName

test eax,eax
jz @Exit ; Le pointeur doit ...
by Grincheux
Tue May 27, 2008 5:06 pm
Forum: GFL SDK
Topic: Some usefule (for me) questions
Replies: 1
Views: 1612

Some usefule (for me) questions

How can I know which options are available when saving a file ?

I explain : If I want to save a JPEG file I have compression and quality options to set, but what about others formats ?

Compresion generally is not used with a BMP file, I would not like to show a compression option for a file format ...
by Grincheux
Thu Mar 01, 2007 9:23 pm
Forum: GFL SDK
Topic: I-View an asm pgm using GFL
Replies: 2
Views: 2290

I have just made a new udpdate , you can find it at http://www.idcat39.com/dwonload/IVSrc.exe for the sources files and http://www.idcat39.com/download/IVBin.exe for the binaries.

Check that you have a Temp directory in the I-View subfolder.
This new version uses an I-View.ini profile file. Look at ...
by Grincheux
Sun Feb 25, 2007 9:42 pm
Forum: GFL SDK
Topic: I-View an asm pgm using GFL
Replies: 2
Views: 2290

I-View an asm pgm using GFL

Now it seem it works fine.

I-View is an image viewer written in assembly language.

You can download its source code from http://www.idcat39.com/download/IVSrc.exe.

You can dowload the binaries from http://www.idcat39.com/download/IVBin.exe
by Grincheux
Sat Feb 17, 2007 7:51 am
Forum: GFL SDK
Topic: Upgrade fro 2.54 to 2.66
Replies: 4
Views: 3013

I have the same error and decided to return back to the 2.54... :x
by Grincheux
Wed Feb 07, 2007 7:09 pm
Forum: GFL SDK
Topic: GFL_SAVE_PARAMS
Replies: 2
Views: 2164

Yes.

I have translated it from ".h" to ".inc" for my assembly usage.

All the other modifications you made from 2.54 to 2.66 are OK.

Here is a link to my download directory. I have found a very interesting library.

You can download the 32 and 64 bits with the manual from :
http://www.stosd.com ...
by Grincheux
Wed Feb 07, 2007 5:17 pm
Forum: GFL SDK
Topic: GFL_SAVE_PARAMS
Replies: 2
Views: 2164

GFL_SAVE_PARAMS

It seems there is a problem with the length of this structure.

GFL SDK 2.66
by Grincheux
Wed Feb 07, 2007 8:26 am
Forum: GFL SDK
Topic: An asm grogram using GFL
Replies: 0
Views: 1590

An asm grogram using GFL

Here is a small program I have written to test GFL with asm language.

Sources files : http://www.stosd.com/telecharger/IVSrc.exe
Program : http://www.stosd.com/telecharger/IVBin.exe

You have to setup windows registry by loading the I-View.reg files

The IVSrc.exe file contains the GFL interface ...
by Grincheux
Wed Jan 31, 2007 8:24 am
Forum: GFL SDK
Topic: Effets photos
Replies: 0
Views: 1370

Effets photos

Où pourrais-je trouver les formules me permettant de créer des effets à appliquer sur des images ?
---------------------------------------------------------------------

Where can I find formulas for effects to apply on images ?
by Grincheux
Sat Jan 13, 2007 4:08 pm
Forum: GFL SDK
Topic: How to load a GIF image file
Replies: 2
Views: 2645

How to load a GIF image file

For loading all images, I use the following function to setup the param structure :

GFL_LoadParams PROC USES EBX EDI ESI,__lpGflParams:LPGFL_LOAD_PARAMS

mov eax,__lpGflParams

test eax,eax
jz @Exit

mov edi,eax

INVOKE gflGetDefaultLoadParams,eax

and eax,0000ffffh
jnz @Error

or (GFL_LOAD ...
by Grincheux
Sat Jan 13, 2007 4:05 pm
Forum: GFL SDK
Topic: Index format of an ilage file
Replies: 0
Views: 1460

Index format of an ilage file

How to know the image format index for an image ?
My program is a small "XnView" like, using GFL.
It can converts one image form a format to an other.
When openning the original file I know its format index,
but I don't know the format index of the new file.

How can I get it?

Do I have to create a ...
by Grincheux
Thu Dec 28, 2006 9:59 am
Forum: GFL SDK
Topic: GFLSDK v2.54 memory overwrite bug???
Replies: 5
Views: 3880

I have found the same problem with GFL_SAVE_PARAMS.
I have added two bytes at the end of the structure to solve the problem.
In an other way you can pass a buffer of 1024 byte and cast it to use the structure definition.
by Grincheux
Thu Dec 14, 2006 9:26 am
Forum: GFL SDK
Topic: Asm and GFL
Replies: 2
Views: 3026

Asm and GFL

How is it possible to upload two sources files in this forum ?
Because I have made an asm interface for GFL and would like
to share it whit your members.
by Grincheux
Wed Dec 13, 2006 9:03 am
Forum: GFL SDK
Topic: Filtres et fichier d'aide
Replies: 5
Views: 2985

Après plusieurs essais, il semble que les valeurs possibles soient comprises entre 2 et 15.

Il semble également que XnView utilise la valeur 2 pour 3x3,
4 pour 5x5, 6 pour 7x7, 8 pour 9x9, 10 pour 11 x 11 et 12 pour 13x13.

A mon avis on peut utiliser les valeurs 2 à 15 sachant que l'effet obtenu ...
by Grincheux
Tue Dec 12, 2006 4:50 pm
Forum: GFL SDK
Topic: Filtres et fichier d'aide
Replies: 5
Views: 2985

Par exemple le filtre gflAverage, utilise une constante en dernier paramètre. Cette constante équivaut à "3x3, "5x5".."13x13" sous XnView. Mais quelles sont les valeurs de cette constante puisque le fichier d'aide ne donne aucune info ?

Je profitre de cette réponse pour poser une autre question ...