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:\windows\system32...
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...
In this case, put "AdvImgLib_NET.dll" and "FreeImage3.dll" in the BIN directory of your project. ___________________________ Kevin Wilson The VB Zone ...
Unfortunately the Advanced Imagery Library does not currently support the .DNG image format. However, it does support the ASCII and binary/raw versions of...
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...
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...
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...
First off, this line will create a memory leak: bOk = objAIL.Convert_To32bit(hImg2, hImg2) You must create a separate variable to hold the result from the ...
I don't know why it's not working for you. It worked for me in my testing. Keep in mind though, I tested calling the "Effect_OverlayPictureEx" function...
How can i create an animated GIF using AIL from a couple of JPEGs? Im using 3.0.0 and VB6. I've made a Long array and loaded the images into each position with...
Hello Eric, The post you put up about this did go through and I just approved it. As far as your problem, there is an HTML Help file included with the source...
Hi, I have had success with converting thousands of fax pages from tif to png with this code, but I have a client with computer generated faxes that are now...
Hi, I have had success with converting thousands of fax pages from tif to png with this code, but I have a client with computer generated faxes that are now ...
Does anyone know how to download the updated libraries. It is great that we updates from Kevin Wilson saying there is an update, but he never says where to...
Hello Robert, When you purchase the Advanced Imagery Library, you receive an email with the download location of the software and the username / password....
It would help to know the revision on the file to know you are in fact downloading the updated version. I compared the versions and I didn't see if I got the...
Hello Robert, I understand that it's important to make sure you have the "latest and greatest" version so your application is solid. Be assured that it is ...
Hello Carina, 1) Call the "IO_LoadImage", or "IO_LoadFromBinary", or "IO_LoadFromBase64" function to load the image 2) Call the "Metadata_Set_IPTC" function to...
Good Evening, I have a asp.net 2.0 website and I am wanting to resize an image for use as a thumbnail that I have uploaded into a byte array to store in SQL....
Hello Ronnie, I've taken your code and modified it a little to be a little more efficient... and I've added the AIL functionality to convert the byte array to...
Kevin, That was great help. Now what if I wanted to load the thumbnail back into a byte array so I could store it into the SQL 2005 database along side the...
Dear Kevin, I have an array of R,G,B bytes stored in 1D array. The image is 1280x1024 so have 3 times as many bytes for the three color channels. The function...
Kevin, I have been trying to do the following in VB6 SP6 I have an array of bytes call pData(0 To 3932159) coming from an image sensor. This translate to a...
Hello Robert, You can use the "IO_LoadFromBinary" and "IO_SaveToBinary" methods to work with byte arrays, but the problem is that these methods don't expect a...
Well, thank you for the information. I will continue working with the SetbitmapBits() API function and figure out why it only displays 1/3 of the image only....
See my response to previous post here: http://tech.groups.yahoo.com/group/AIL_Development/message/51 - Kevin ... image ... multiplied ... GREEN, ... border ......
I want to read and write(change) the RGB values of 16 bit Grayscale TIF image in vb.net 2005. could you give me some guidelines. system.drawing.bitmap not...