473,396 Members | 1,859 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Splitting multiple tiffs into single pages

How Can I extract multiple tiff images into single images through asp
programming?
Is there any free dll's that I can use in ASP to split multiple tiffs into
single tiffs?

Any suggestion regarding this issue will be highly appreciated.....
Jul 22 '05 #1
9 1848
"amitavabardhan" wrote in message
news:F0**********************************@microsof t.com...
: How Can I extract multiple tiff images into single images through asp
: programming?
: Is there any free dll's that I can use in ASP to split multiple tiffs into
: single tiffs?
:
: Any suggestion regarding this issue will be highly appreciated.....

Your message contradicts itself. Splitting something creates multiples, not
singles. Combining multiples creates a single.

Do you have multiple images that you would like to be one or one that you
would like to be many?
How would you define the split, if not combining, meaning split by length,
height, squares, rectangles, etc.?
And, how is the applied to your application. What is your current situation
and what is your goal?

Ex. I have a large tiff image that I would like to break into smaller
images so they page can render the images as it loads.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp

Jul 22 '05 #2
Hello Roland,

I am sorry for the confusion...what I meant was extracting single page tiff
images from multi-page tiffs.
I would like to create an application that can automate the extracting of
the single page tiff images from multi page tiffs.

Hope that helps...

"Roland Hall" wrote:
"amitavabardhan" wrote in message
news:F0**********************************@microsof t.com...
: How Can I extract multiple tiff images into single images through asp
: programming?
: Is there any free dll's that I can use in ASP to split multiple tiffs into
: single tiffs?
:
: Any suggestion regarding this issue will be highly appreciated.....

Your message contradicts itself. Splitting something creates multiples, not
singles. Combining multiples creates a single.

Do you have multiple images that you would like to be one or one that you
would like to be many?
How would you define the split, if not combining, meaning split by length,
height, squares, rectangles, etc.?
And, how is the applied to your application. What is your current situation
and what is your goal?

Ex. I have a large tiff image that I would like to break into smaller
images so they page can render the images as it loads.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp

Jul 22 '05 #3
"amitavabardhan" wrote in message
news:60**********************************@microsof t.com...
: I am sorry for the confusion...what I meant was extracting single page
tiff
: images from multi-page tiffs.
: I would like to create an application that can automate the extracting of
: the single page tiff images from multi page tiffs.

I remember discussing this with someone a long time ago. I'll have to see
if I can find that discussion.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp
Jul 22 '05 #4
Roland, looking forward to your inputs

"Roland Hall" wrote:
"amitavabardhan" wrote in message
news:60**********************************@microsof t.com...
: I am sorry for the confusion...what I meant was extracting single page
tiff
: images from multi-page tiffs.
: I would like to create an application that can automate the extracting of
: the single page tiff images from multi page tiffs.

I remember discussing this with someone a long time ago. I'll have to see
if I can find that discussion.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp

Jul 22 '05 #5
I ended up using some .Net code (C#) to do it, because it was relatively
easy.

I found the quality wasn't perfect, but it was close enough (my original
tiff's were faxes)

Let me know if you want me to post the code I have.
Tom B

"amitavabardhan" <am************@discussions.microsoft.com> wrote in message
news:90**********************************@microsof t.com...
Roland, looking forward to your inputs

"Roland Hall" wrote:
"amitavabardhan" wrote in message
news:60**********************************@microsof t.com...
: I am sorry for the confusion...what I meant was extracting single page
tiff
: images from multi-page tiffs.
: I would like to create an application that can automate the extracting of : the single page tiff images from multi page tiffs.

I remember discussing this with someone a long time ago. I'll have to see if I can find that discussion.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp MSDN Library - http://msdn.microsoft.com/library/default.asp

Jul 22 '05 #6
"amitavabardhan" wrote in message
news:90**********************************@microsof t.com...
: Roland, looking forward to your inputs

After reading Tom's response, I remembered what that discussion was and it
was related to faxing and nothing to do with ASP. I did find something that
looks promising which also have a command-line version called nconvert.
It's free for non-commercial use.

http://www.xnview.com./

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp
Jul 22 '05 #7
Tom,

Unfortunately I will not be able to use your code because we do not have
..net set up in our office...We work only in the classical asp.

Thanks for all the help....

"Tom B" wrote:
I ended up using some .Net code (C#) to do it, because it was relatively
easy.

I found the quality wasn't perfect, but it was close enough (my original
tiff's were faxes)

Let me know if you want me to post the code I have.
Tom B

"amitavabardhan" <am************@discussions.microsoft.com> wrote in message
news:90**********************************@microsof t.com...
Roland, looking forward to your inputs

"Roland Hall" wrote:
"amitavabardhan" wrote in message
news:60**********************************@microsof t.com...
: I am sorry for the confusion...what I meant was extracting single page
tiff
: images from multi-page tiffs.
: I would like to create an application that can automate the extracting of : the single page tiff images from multi page tiffs.

I remember discussing this with someone a long time ago. I'll have to see if I can find that discussion.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp MSDN Library - http://msdn.microsoft.com/library/default.asp


Jul 22 '05 #8
Thanks Roland...At least I have something to explore!

"Roland Hall" wrote:
"amitavabardhan" wrote in message
news:90**********************************@microsof t.com...
: Roland, looking forward to your inputs

After reading Tom's response, I remembered what that discussion was and it
was related to faxing and nothing to do with ASP. I did find something that
looks promising which also have a command-line version called nconvert.
It's free for non-commercial use.

http://www.xnview.com./

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp

Jul 22 '05 #9
"amitavabardhan" wrote in message
news:1A**********************************@microsof t.com...
: Thanks Roland...At least I have something to explore!

Good luck with it. I'd be interested in knowing how it works out.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp
Jul 22 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: somaBoy MX | last post by:
I'm building a site where I need to pull very large blocks from a database. I would like to make navigation a little more user friendly by splitting text in pages which can then be navigated. I...
0
by: frankenberry | last post by:
I have multi-page tiff files. I need to extract individual frames from the multi-page tiffs and save them as single-page tiffs. 95% of the time I receive multi-page tiffs containing 1 or more black...
4
by: guitarromantic | last post by:
Hey everyone. Following advice found online, I figured out a basic way of splitting a long article into several pages, by exploding out from a <!--pagebreak--> code in my $content field. ...
1
by: Andy Britcliffe | last post by:
Hi I'm faced with the situation where I could have a single physical file that could contain multiplie XML documents e.g file.txt contains the following: <?xml version="1.0"...
1
by: Arne | last post by:
All my code behind pages gets compiled into one DLL. I would like to redirect my code behind into multiple DLLs so that I get more flexibility when installing new features to a web site. I am adding...
9
by: Graham | last post by:
I have been having some fun learning and using the new Controls and methods in .Net 2.0 which will make my life in the future easier and faster. Specifically the new databinding practises and...
2
by: shadow_ | last post by:
Hi i m new at C and trying to write a parser and a string class. Basicly program will read data from file and splits it into lines then lines to words. i used strtok function for splitting data to...
0
by: aj | last post by:
SQL Server 2005 SP2 I read the excellent advice "Optimize tempdb in SQL Server by striping and splitting to multiple files" at...
1
by: =?Utf-8?B?RGFubw==?= | last post by:
Hello all, I have searched all over the net, and tried many different things; but now I am stumped. I am trying to break multipage tiffs into individual frames and reformatting them to a different...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.