AIL has been a great tool for a self-taught vb.net (2003) programmer such as myself. I was curious about how to display images. I have been using something...
2
Kevin Wilson
kwilson1997
Jun 17, 2005 12:18 am
... Thank you. =) ... This is by far the easiest way to display an image. However, that doesn't work well if you need to render multiple images onto the...
3
David
k_naranek
Sep 19, 2005 7:40 pm
I do a lot of multipage tiff work. AIL makes it very easy, but I was wondering if I could create mulitpage tiffs and append to them completely in memory? A lot...
4
Kevin Wilson
kwilson1997
Sep 20, 2005 2:52 pm
My understanding is that it is all file-based. I've created a FreeImage forum item requesting details on this, and suggesting a set of memory-based multi-page...
5
jizhong2000
Nov 9, 2005 5:47 pm
I purchased AIL on Paypal yesterday and have not received the downloading instructions yet. The transaction ID is 6AH65319VP707361Y. Can you look into it and...
6
Kevin Wilson
kwilson1997
Nov 10, 2005 9:26 pm
I appologize I haven't been able to get back to you on this. Things have been very busy and this slipped through the cracks. I just sent you the information...
7
vlgolub
Nov 17, 2005 1:03 pm
Hi using objAIL.Render_Normal I have an image say 300 X 300 px I require a section of this image starting at point 25x, 40y with a width of 120 and a height of...
8
Kevin Wilson
kwilson1997
Nov 21, 2005 12:38 am
... Try this: Dim objAIL As AdvImgLib.cAdvancedImagery Dim hIMG As Long Me.Visible = True Me.AutoRedraw = True Me.Left = 0 Me.Top = 0 DoEvents Set objAIL =...
10
thuiz1976
Jan 11, 2006 10:10 pm
I tried to use ail in asp.net 2.0,compilation went ok but when i tried to run it, i got the folowing error: Retrieving the COM class factory for component with...
11
Kevin Wilson
kwilson1997
Jan 12, 2006 5:06 am
"AdvImgLib.dll" was compiled with Visual Basic 6.0. Because of this, you need to have the VB6 run-time files installed on the computer you're running your...
12
morenoffida
Jan 13, 2006 9:57 am
Hi, I'm italian user of RB, and I use the cAdvancedImagery class on WinXP, but now I have to use it under MAC OS, do you know if someone has compile the dll...
14
Kevin Wilson
kwilson1997
Jan 20, 2006 3:28 am
I wanted to send out a quick message and appologize about the JUNKMAIL that people have been sending through this group. It's sad when people go out and find...
15
marlin02910
Mar 31, 2006 5:58 am
After downloading the AIL, I worked with it and had no problems as of about March 1. I am now working with it again, and am getting a runtime error: Microsoft...
16
Kevin Wilson
kwilson1997
Mar 31, 2006 6:04 am
Try putting FREEIMAGE.DLL and FREEIMAGE3.DLL into the WINNT/SYSTEM32 directory. Since ADVIMGLIB.DLL and ADVIMGLIB5.DLL are AcitveX / COM libraries, it doesn't...
17
Kevin Wilson
kwilson1997
Oct 13, 2006 5:56 pm
Remember that the "AIL_Development" Yahoo! group is a great place to post questions, comments, feedback, or neat code snippets for other developers using the...
18
hmmfunnything
Nov 9, 2006 9:34 pm
I've spend 6 hours tracing both the photo demo and the raw AIL library calling AdvImgLib.cAdvancedImagery_ASP run the exact same processes using the same image...
19
Kevin Wilson
kwilson1997
Nov 12, 2006 6:51 pm
It sounds like you're not compressing the JPEG image at all. When you call the "IO_SaveImage" method to save a JPEG image, pass a value from 1 to 100 to the...
20
Kevin Wilson
kwilson1997
Dec 5, 2006 9:51 pm
Version 3.0 was released on November 24, 2006. After some thought about the new release, it was decided that those who have purchased the Advanced Imagery...
21
Eric
hobbykitjr
Feb 15, 2007 12:33 am
Hi, We Recently Purchased this software and the sample mentioned above does output a PNG file like its supposed to, but its empty. It should contain the 2...
22
Kevin Wilson
kwilson1997
Feb 15, 2007 1:52 am
Hello Eric, Can you please provide a small snippet of code that demonstrates what is going wrong and the issue you're having problems with. I'll look into it...
23
bhlee611
Feb 19, 2007 5:32 pm
Dear, all I'm really beginner to use AIL libary and process image, so that there are many things that I can not understand. So, I'd like to ask several...
24
Kevin Wilson
kwilson1997
Feb 20, 2007 7:00 pm
1) The "Advanced Imagery Library" does not currently support reading individual Photoshop layers stored within TIFF or PSD files. You can load a TIFF or PSD...
25
Kevin Wilson
kwilson1997
Feb 22, 2007 9:54 pm
For more information, see also: http://sourceforge.net/forum/forum.php?thread_id=1676585&forum_id=36111 Once such functionality is added to FreeImage, I'll...
26
rthilfiger2001
Apr 16, 2007 3:54 pm
I am hosting a site on a shared server with godaddy.com and they will not let me place the FreeImage3.dll and AdvImgLib_NET.dll in the C:\windows92;system32...
27
eddiefrank_1977
Apr 16, 2007 3:57 pm
HI, Could anyone tell me if AIL supports/has dlls for read and display of raw image formats like .dng , if not can one create them and use the dlls with Visual...
28
Kevin Wilson
kwilson1997
Apr 16, 2007 5:17 pm
In this case, put "AdvImgLib_NET.dll" and "FreeImage3.dll" in the BIN directory of your project. ___________________________ Kevin Wilson The VB Zone ...
29
Kevin Wilson
kwilson1997
Apr 16, 2007 5:21 pm
Unfortunately the Advanced Imagery Library does not currently support the .DNG image format. However, it does support the ASCII and binary/raw versions of...
30
Michael
somenon2
Apr 17, 2007 2:40 pm
I've seen the sample picstures of what AIL can do, so I know this has been done, atleast some way. I'm trying to use Effect_OverlayPicture, and trying to put...
31
Kevin Wilson
kwilson1997
Apr 17, 2007 4:32 pm
There's 2 ways to do it. The first is to render directly to a Form / ... Dim objAIL As cAdvancedImagery Dim hImg As Long Dim hImg2 As Long ' Initialize...
32
michael.reep@...
somenon2
Apr 18, 2007 2:25 pm
I attempted to write a function (using the code you provided via method 2) so I could get it to work from ASP. It seems to work ok, but the transparency is...