Search found 17 matches

by lazerfisk
Tue Oct 11, 2005 2:20 pm
Forum: NConvert
Topic: stdin | stdout
Replies: 2
Views: 2711

Re: stdin | stdout

would like to see you support stdin and real stdout (i.e. you are currently putting licensing information in stdout, rather than putting it in stderr, for example). this would eliminate the need to deal with temp files, if, for example, i wanted to pull an image from a database, run nconvert and ...
by lazerfisk
Mon Oct 10, 2005 1:02 pm
Forum: GFL SDK
Topic: avi thumbnail in asp
Replies: 6
Views: 2762

Movie support would be nice plz add it
But what do you want? Function to extract a frame from a movie, for example?

That sounds like a good idea. It could use the page property to load a specificed frame on demand, that way it wouldn't have to load the entire clip. I'm sure this would be a ...
by lazerfisk
Mon Oct 10, 2005 12:57 pm
Forum: NConvert
Topic: WC3/WOW BLP/BLP2 formats
Replies: 3
Views: 3675

How does it look? Is this something we can expect soon? :)

Cheers,
Christopher
by lazerfisk
Fri Oct 07, 2005 3:47 pm
Forum: NConvert
Topic: WC3/WOW BLP/BLP2 formats
Replies: 3
Views: 3675

Of course :)

http://www.angelicparticles.net/blp-samples.rar (about 800kb)

Cheers,
Christopher
by lazerfisk
Fri Oct 07, 2005 1:54 pm
Forum: NConvert
Topic: WC3/WOW BLP/BLP2 formats
Replies: 3
Views: 3675

WC3/WOW BLP/BLP2 formats

I would like to request support for BLP and BLP2 in XnView and NConvert. There is no decent conversion utility out there, and since i use XnView and NConvert for every other image-related operation on the system that would be wonderful. I guess it would also make XnView and NConvert find a new ...
by lazerfisk
Thu Aug 18, 2005 10:36 am
Forum: GFL SDK
Topic: Feature Request: gflLoadEXIF
Replies: 10
Views: 4928


Currently there is only EXIFDateTaken, but you would like to retrieve all EXIF tags?
Yes :) What i would like is something similar to pure ASP EXIF except embedded in GflAx :)

Do you have an example script to show how it works?
well, Pure ASP EXIF is downloadable from that website. But, what i ...
by lazerfisk
Thu Aug 18, 2005 10:03 am
Forum: GFL SDK
Topic: Feature Request: gflLoadEXIF
Replies: 10
Views: 4928

xnview wrote:
lazerfisk wrote:Will this feature be available in gflax as well?
Currently there is only EXIFDateTaken, but you would like to retrieve all EXIF tags?
Yes :) What i would like is something similar to pure ASP EXIF except embedded in GflAx :)

Cheers,
Christopher
by lazerfisk
Tue Aug 09, 2005 11:38 am
Forum: GFL SDK
Topic: ASP comp. PNG & Transparency
Replies: 4
Views: 2404

Also keep in mind that only firefox (and maybe opera) can handle PNG transparency, so no matter how much you try to throw a valid PNG with transparency at IE it won't work. You will have to try something else in order to get this working there :)

Cheers,
Christopher
by lazerfisk
Tue Aug 09, 2005 11:34 am
Forum: GFL SDK
Topic: Feature Request: gflLoadEXIF
Replies: 10
Views: 4928

Will this feature be available in gflax as well?

Cheers,
Christopher
by lazerfisk
Mon May 17, 2004 10:46 am
Forum: GFL SDK
Topic: Where did .SetPicture go?
Replies: 3
Views: 2428

I was just curious, when could i expect a new build of GFLAX? :) I can't really do much work on the project since GFL bails every time i try to load a picture... :)

Thanks in advance,
Christopher
by lazerfisk
Thu May 13, 2004 4:43 pm
Forum: GFL SDK
Topic: Where did .SetPicture go?
Replies: 3
Views: 2428

Re: Where did .SetPicture go?

I am currently working on a project that uses GFLAX 2.0.
Which project, please? =;-)
It's a tiny tool to allow visual upload of pictures to a website using FTP with a limited set of editing capabilities. It retrieves the existing images in a folder using asyncread to a picturebox, and injects ...
by lazerfisk
Sat May 08, 2004 2:22 pm
Forum: GFL SDK
Topic: Uploading images
Replies: 2
Views: 2153

This should be doable... If you can get the binary data from the upload component, you could insert it into GFL in the same manner as you do binary write:

response.binarywrite gfl.sendBinary

Just do this instead:

gfl.receiveBinary strBinaryData

And if you got your fingers crossed it works ...
by lazerfisk
Fri May 07, 2004 8:45 am
Forum: GFL SDK
Topic: Getting IPTC information (VB)
Replies: 6
Views: 3360

After some effort i found this URL for you:

http://www.watermarker.com/exif-iptc-gps/

Try it out - have it spit out the EXIF/IPTC information before you tell GFL to open the image :) Haven't tried it though. Tell me how it works out!

Cheers,
Christopher
by lazerfisk
Fri May 07, 2004 8:27 am
Forum: GFL SDK
Topic: Installation (Asp)
Replies: 2
Views: 2212

Not quite. I use Textpad for creating ASP-code :) So, there is no IDE and no references :/

Dim Image
Set Image = Server.CreateObject("GflAx" & gflsdk_version & ".GflAx")

Image.LoadBitmap server.mappath(request("img"))

iwidth = image.width
iheight = image.height

aspect = iheight/iwidth

if ...
by lazerfisk
Fri May 07, 2004 8:16 am
Forum: GFL SDK
Topic: Progress Bar while loading Graphic?
Replies: 3
Views: 2204

Make something even fancier: Load a thumbnail into a nice form with the text "Changing wallpaper" or something :) Don't know if the threading permits you to move on while loading an image - that would be if you used a timer or something and probed for a percent value, but that would still require a ...