473,748 Members | 2,398 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to add few pictures into one

Lad
Hello ,
is it possible to add( with PYTHON language) several image files into
one?
Thanks for reply
L.

Jun 5 '06 #1
15 2963
Lad wrote:
Hello ,
is it possible to add( with PYTHON language) several image files into
one?


Google for 'Python Imaging Library'...

Regards
Sreeram

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2.2 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFEhCoTrgn 0plK5qqURApwkAK CMlXC016OG4LJpQ VpJOamatK+q6QCf Q9bR
MmrLXAD6JSh2aIN EcrZRVds=
=W2Ow
-----END PGP SIGNATURE-----

Jun 5 '06 #2
Lad

K.S.Sreeram wrote:
Lad wrote:
Hello ,
is it possible to add( with PYTHON language) several image files into
one?


Google for 'Python Imaging Library'...

Regards
Sreeram

Thank you for your reply.
I was thinking about this:
to open each image file in binary mode , read it and write into the
result image file?
Is that possible?
Regards,
L

Jun 5 '06 #3
On 2006-06-05, Lad <py****@hope.cz > wrote:
is it possible to add( with PYTHON language) several image
files into one?


Google for 'Python Imaging Library'...


I was thinking about this: to open each image file in binary
mode , read it and write into the result image file? Is that
possible?


Yes.

--
Grant Edwards grante Yow! I have many CHARTS
at and DIAGRAMS...
visi.com
Jun 5 '06 #4
Lad wrote:
K.S.Sreeram wrote:
Lad wrote:
Hello ,
is it possible to add( with PYTHON language) several image files into
one?


Google for 'Python Imaging Library'...

Regards
Sreeram


Thank you for your reply.
I was thinking about this:
to open each image file in binary mode , read it and write into the
result image file?
Is that possible?
Regards,
L

Of course, but what you haven't said yet is how you want the resulting
image file to behave. Do you want it to contain tiled copies of the
original images, or be an animation with each frame being one of the
original images, or something else I haven't thought of.

We aren't mind readers here.

though-some-regulars-get-close-ly y'rs - steve
--
Steve Holden +44 150 684 7255 +1 800 494 3119
Holden Web LLC/Ltd http://www.holdenweb.com
Love me, love my blog http://holdenweb.blogspot.com
Recent Ramblings http://del.icio.us/steve.holden

Jun 5 '06 #5
Lad

Steve Holden wrote:
Lad wrote:
K.S.Sreeram wrote:
Lad wrote:

Hello ,
is it possible to add( with PYTHON language) several image files into
one?

Google for 'Python Imaging Library'...

Regards
Sreeram


Thank you for your reply.
I was thinking about this:
to open each image file in binary mode , read it and write into the
result image file?
Is that possible?
Regards,
L

Of course, but what you haven't said yet is how you want the resulting
image file to behave. Do you want it to contain tiled copies of the
original images, or be an animation with each frame being one of the
original images, or something else I haven't thought of.

We aren't mind readers here.

though-some-regulars-get-close-ly y'rs - steve
--

Steve
Thank you for your reply
All that I want is this:
I download ( via Python) some pictures from internet and I want to add
all these pictures into one =one file/
So far, I managed to download pictures but I do not know how to add i
them nto one file.
How can I do that?
Thank you for reply and help
L.

Jun 5 '06 #6
Lad wrote:
Steve Holden wrote:
Lad wrote:
K.S.Sreera m wrote:
Lad wrote:
>Hello ,
>is it possible to add( with PYTHON language) several image files into
>one?

Google for 'Python Imaging Library'...

Regards
Sreeram


Thank you for your reply.
I was thinking about this:
to open each image file in binary mode , read it and write into the
result image file?
Is that possible?
Regards,
L


Of course, but what you haven't said yet is how you want the resulting
image file to behave. Do you want it to contain tiled copies of the
original images, or be an animation with each frame being one of the
original images, or something else I haven't thought of.

We aren't mind readers here.

though-some-regulars-get-close-ly y'rs - steve
--


Steve
Thank you for your reply
All that I want is this:
I download ( via Python) some pictures from internet and I want to add
all these pictures into one =one file/
So far, I managed to download pictures but I do not know how to add i
them nto one file.
How can I do that?
Thank you for reply and help
L.

Zip file? Image file? "Add all these pictures into one file" isn't (fro
me) a sufficient specification.

regards
Steve
--
Steve Holden +44 150 684 7255 +1 800 494 3119
Holden Web LLC/Ltd http://www.holdenweb.com
Love me, love my blog http://holdenweb.blogspot.com
Recent Ramblings http://del.icio.us/steve.holden

Jun 5 '06 #7
Lad

All that I want is this:
I download ( via Python) some pictures from internet and I want to add
all these pictures into one =one file/
So far, I managed to download pictures but I do not know how to add i
them nto one file.
How can I do that?
Thank you for reply and help
L.

Zip file? Image file? "Add all these pictures into one file" isn't (fro
me) a sufficient specification.


I want to to do that as easy as possible. I think the easest way could
be add( append) an image to another into an image file so that I can
use an image browser and see all pictures in one file.
Is that possible?
Thank you for reply
L.

Jun 6 '06 #8
Lad wrote:
I want to to do that as easy as possible.
But not even more easy.

I think the easest way could be add( append) an image to another
into an image file so that I can use an image browser and see all
pictures in one file. Is that possible?


Well, you can do it with PIL, creating a very big white image and
putting on it all the images, as tiles.
But probably you want to do something different.
Maybe you can use PyUNO to create a PowerPoint-like (Presentation) file
with an image on each page.
If you are on Win another easy way is to create an Html page that shows
all the pics, open it with Explorer and save it as a single HMT file.
Probably there are other solutions.

Bye,
bearophile

Jun 6 '06 #9
Lad

be************@ lycos.com wrote:
Lad wrote:
I want to to do that as easy as possible.


But not even more easy.

I think the easest way could be add( append) an image to another
into an image file so that I can use an image browser and see all
pictures in one file. Is that possible?


Well, you can do it with PIL, creating a very big white image and
putting on it all the images, as tiles.
But probably you want to do something different.
Maybe you can use PyUNO to create a PowerPoint-like (Presentation) file
with an image on each page.
If you are on Win another easy way is to create an Html page that shows
all the pics, open it with Explorer and save it as a single HMT file.
Probably there are other solutions.


I was thinking about much less complicated task.
I thought about this:
Open a picture file( download it from internet) and write it in a
result file( being open in binary mode).
Then download another file and append to the result file.
And so on...
But is it possible? Will be the pictures in the result file seen
well??
regards,
L.

Jun 6 '06 #10

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

Similar topics

4
3368
by: Bob Bedford | last post by:
I've been able to parse the XML files used to update my database. Now, I receive image in XML files, like this: <PICTURES COUNT="3" CDATA="1"> <PIC NR="1"><!]></PIC> <PIC NR="2"><![CDATA[/9j/4AAQSk.............></PIC> <PIC NR="3"><![CDATA[/9j/4AAQSk.............></PIC> </PICTURES>
0
2030
by: JakeC | last post by:
Hey all, I'm currently redesigning a website that a friend and I started about a year ago. It is a daily surf report so when choosing the best script/language to use for the new design, I found that a mixture of PHP and MySQL would be a good idea. I have currently set up OmniHTTPd and installed MySQL and PHP onto my homeserver. I want the site to be set up as follows: 1- I add the report, date and pictures (and amount of pictures...
1
5467
by: Sven Steinacker | last post by:
Hi, XSLT files generated by Microsoft InfoPath applied to an applicable XML file produces quite decent HTML presentations. At least with Mozilla and, of course, IE 6.0 the results look the same as the original form in InfoPath. However, pictures which were included in an InfoPath form's RTF field before, are encoded in XHTML and embedded in the XML file as follows: <img style="WIDTH: 541px; HEIGHT: 330px" tabIndex="-1" height="330"...
0
1284
by: Marcel - IDUG Europe 2005 | last post by:
Visit the blog for a virtual experience of the conference. Check out the blog at: http://idugeurope.blogspot.com Here are some previous posts: - Pictures Live on Tuesday
3
2676
by: Pedro Maria Ferro da Cunha | last post by:
I spend a lot of time making 2 thousand pictures and saving them as an article name. jpg. I have a table with the article name and name of the file in jpg (format). How can I make an instant attach to the database instead of adding picture
12
20932
by: Wadim Grasza | last post by:
I want to store and display (on a form or a report) multiple pictures per record in an access database. The pictures are not stored within the database. They are stored as files and the database contains the paths to the pictures. The database consists of two tables: TABLE DATA ID Name LastName
13
2199
by: gooze | last post by:
Hello I am working on an applicaion that shows several pictures on a webpage. These pictures are saved in a MySQL DB as BLOB. I noticed, that the web server suffers in its performance by printing the pictures. Let's say there are 20 pictures to show, there also are 20 queries to do. This is the way I am doing it up to now: index.php <?php
1
1688
by: suresh_punniyakkodi | last post by:
Hellow, I am suresh, i am developing one project in VB. I need your help. My question is how to zoom pictures(zoom in and zoom out) in Visual Basic (like Photo Editor). Because, i am managing some pictures in my one part of the Project, and i need how to rotate pictures in Visual Basic. So, please tell me how to include zooming facility in VisualBasic. and how to include scrolls in that pictures, and also i need zoom to...
4
7253
by: Zeljko Bilandzija | last post by:
Hy, could someone help me in this: In design mode, i want to put pictures in database. I made column named pics, and its type as image. How can I put pictures or some address of these pictures in that column, or i maybe need to put pictures in Add_Data folder and make reference from there, or what I need to do? could someone explain me that process of putting at least one picture in database, I'm using Microsoft SQL Server 2005
2
2985
by: Tyler | last post by:
I need to have a form that displays a group of 20 pictures in 4 rows of 5 pictures. The pictures are of people. Each Subject record has a picture field. I have a query written that selets the group of records I want. Now I could use some help displaying just the pictures on a form in a 4 rows of 5 pattern. I don't want to have a continuous form with 20 pictures in a row. (although if that were the case I would have finished already). The...
0
8991
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9544
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9372
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9247
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8243
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6796
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6074
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4606
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4874
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

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.