Merging two Pictures

R

Roy Goldhammer

Hello there

I've got some pictures as Tif type

Now i need to merge it to one tif

Is it possible?

--
øåòé âåìãäîø
ù.î. òúéã äðãñú úåëðä
(e-mail address removed)
èì: 03-5611606
ôìà' 050-7709399
 
D

Douglas J. Steele

It's probably possible, but I suspect you'll need some sort of graphics
program to do it.
 
D

David C. Holley

Probably, but this wouldn't be the forum for it as Access doesn't have
that capability. You're looking for an application such as Adobe
Photoshop or another photo editor.
 
D

Douglas J. Steele

Access doesn't have the capability. If you need to do it from within Access,
you're going to have to find an appropriate Graphics package that supports
automation, or one that supports command-line options so that you can use
the Shell command to run it.
 
R

Roy Goldhammer

Maybe. But this process must be run by access

Because id depends on some atcions that are taken from access

--
???? ???????
?.?. ???? ????? ?????
(e-mail address removed)
??: 03-5611606
???' 050-7709399
 
S

Stephen Lebans

Roy when you say Merge what do you mean exactly?

You could add a method to my vbPictureBox class to accomplish what you
need to do. Do you have any experience working with the GDI?

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
 
D

David C. Holley

Not going to happen. Access is first and foremost a database
application. The capability to control the other applications is an
add-on to expand its functionality. Graphics manipulation is beyond its
capability. You're only option, if you want it controled by Access to
develop your own application using C.
 
R

Roy Goldhammer

Whell Stephen

I get list of tif Files. Each tif has one page only.

My target is to create one Tif file that has all the list of tif files.

The action must be run by access because it is part of huge program which
part of that must merge the tifs to one tif file.

Can you help me on it?


--
???? ???????
?.?. ???? ????? ?????
(e-mail address removed)
??: 03-5611606
???' 050-7709399
 
S

Stephen Lebans

Sure, no problem now that you have stated exactly what has to be
accomplished.

Two methods. One is very straightforward requiring very little VBA
programming. The other method would take a couple of hours to create
from scratch but I would bet you could find a ready made sample in VB
that could quickly be ported over.

Method #1: ***Requires Office 2003***)
Use the MODI(Microsoft Office Document Imaging) ActiveX control. It
exposes methods that would easily allow you to create and modify
multipage TIFF files.

For detailed info on the control and sample source code see:
http://www.ilixis.com/developer.html


Method #2:
Modify the GDI+ sample MDB on my site that allows you to view single
page TIF files on an Access form without requiring the standard
Microsoft Office Graphics filter for TIF files(no longer included with
Access2003).
http://www.lebans.com/loadjpeggif.htm

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
 
R

Roy Goldhammer

Thankes Stephen

But i can't see the option of merging some tif files to one file

--
???? ???????
?.?. ???? ????? ?????
(e-mail address removed)
??: 03-5611606
???' 050-7709399
 
S

Stephen Lebans

Roy I would suggest you donwload the MODI archive from MS. It has an
excellent HELP file for the MODI object model. There is a Document
object that exposes a Create method. THis method can also be used to add
additional TIFF files to the current document.

The download also has sample VB source code.
http://www.microsoft.com/downloads/details.aspx?FamilyID=8f93e445-b1cf-4
477-a373-e17417d616bc&DisplayLang=en
and
http://www.microsoft.com/downloads/details.aspx?familyid=7B6D9193-A1C8-4
934-8007-47089FDE37DE&displaylang=en

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
 
R

Roy Goldhammer

Thankes Stephen

The tool works fine. after i add referance to Microsoft Office Document
Imaging (MODI)

I'm working with access 2003 and on my computer it works fine.

Will it work on compuyer with access XP?
Will it work on compuyer with Office Standart and Runtime XP?
And will it work with compuyer with Windows 98?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Merging two Tif files to one file 5
Using MODI on access 1
error 3709 3
Get Data from source safe 4
Waiting for finish Shell Function 1
Terminal service problem 0
Using Class Module 5
Reading Text File 1

Top