Search found 7 matches

by abellos
Sat Jul 20, 2019 10:22 pm
Forum: GFL SDK
Topic: Add a page to a tiff file
Replies: 0
Views: 11660

Add a page to a tiff file

Hello there are some method to create a multipage tiff from a single page tiff adding other files?
For example i have 01.tif 02.tif and 03.tif.
I want add 02 and 03 in the 01.tif for have a multipage resulting file.
Already tried the mergeAdd and merge but dont work.
Can someone help me?
by abellos
Tue Sep 30, 2014 8:03 am
Forum: GFL SDK
Topic: Save an image after rotation in TIFF with ASP
Replies: 1
Views: 13786

Re: Save an image after rotation in TIFF with ASP

I have resolved my problem, but i had to read the source code for find the right method.
The code below

Set ctrl = server.createobject("GflAx.GflAx")

f = session("PercorsoIMG")

'response.write f

'response.end

With ctrl
.enablelzw= True
.LoadBitmap f
.rotate gradi
.SaveFormat = 5 ...
by abellos
Mon Sep 29, 2014 3:23 pm
Forum: GFL SDK
Topic: Save an image after rotation in TIFF with ASP
Replies: 1
Views: 13786

Save an image after rotation in TIFF with ASP

Hi i use thi sub for saving image in tiff

SUB rotazione(gradi)

Set ctrl = server.createobject("GflAx.GflAx")

f = session("PercorsoIMG")

'response.write f

'response.end

With ctrl
.enablelzw= True
.LoadBitmap f
.rotate gradi
'.SaveformatName = "tiff"
.SaveFormat = 5
.BitmapType ...
by abellos
Wed Sep 24, 2014 1:04 pm
Forum: GFL SDK
Topic: View a tiff image in a ASP page
Replies: 0
Views: 12896

View a tiff image in a ASP page

Hi guys,
i need to display a tiff image in a ASP page after reduce it. But i need to see the image in a single page not use 2 page asp.
I use the code:

Dim Path, File

Path = Server.MapPath(".")
File = Path & "\image.tif"

Set ctrl = server.createobject("GflAx.GflAx")


With ctrl
'.enablelzw ...
by abellos
Thu Jul 21, 2011 7:36 am
Forum: GFL SDK
Topic: Using gflax in vb net 2010
Replies: 0
Views: 1238

Using gflax in vb net 2010

Hi, i have registered the files in this archive GflAX-binaries-3.0.zip, but how use it in vb net? I'm on a win xp 32 bit, in the com object list don't appears the library. Anyone help me? thanks in advance.
by abellos
Sat Nov 10, 2007 3:12 pm
Forum: GFL SDK
Topic: Problem loading file TIFF and BMP
Replies: 1
Views: 1709

Problem loading file TIFF and BMP

I have this project in access

http://www.unityroots.it/problem.zip

, but gflax have problem reading tiff and bmp file. The image object is all black!!!!

the file are this:

test.bmp gflax read this file (image at 24 bit of color)
ciao.bmp gflax not read this file (image at 1 bit of color)
ciao ...
by abellos
Fri Nov 09, 2007 7:49 pm
Forum: GFL SDK
Topic: Using Gflax.dll in microsoft access
Replies: 4
Views: 3642

Using Gflax.dll in microsoft access

Can you help me to use gfl in an access project?

I have created a button and an image object in a mask.

The code on the button is :
Private Sub Comando0_Click()
Dim MyObj As GflAx.GflAx
Set MyObj = New GflAx.GflAx

With MyObj
.LoadBitmap "d:\image.tif"
Immagine3.Picture = .GetPicture
End ...