Register on the forum now to remove ALL ads + popups + get access to tons of hidden content for members only!
vintage erotica forum vintage erotica forum vintage erotica forum
vintage erotica forum
Home
Go Back   Vintage Erotica Forums > Information & Help Forum > Help Section
Best Porn Sites Live Sex Register FAQ Members List Calendar Mark Forums Read

Notices
Help Section If you have technical problems or questions then post or look for answers here.


Reply
 
Thread Tools Display Modes
Old July 9th, 2017, 09:40 AM   #1
theLoster
Senior Member
 
Join Date: Jun 2017
Posts: 135
Thanks: 421
Thanked 2,137 Times in 133 Posts
theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+
Default Merging multiple images into a single image

I'm not trying to do photomerging where you combine two separate halves of an image together, but rather I am trying to merge a whole bunch of smaller (tiles) together into a single big image.
If you look at the page at http://tittiesondisplay.com/PBLinks/...hp?y=1979&m=08 it has a whole bunch of smaller images stuck together to form one high resolution centerf0ld. I don't need to do any kind of color matching or alignment as all the various smaller images already fit together. I just need some way to merge them into a single image so I don't have 500 smaller images per picture.
theLoster is online now   Reply With Quote
The Following 5 Users Say Thank You to theLoster For This Useful Post:


Old July 9th, 2017, 11:33 AM   #2
pigulici
Senior Member
 
pigulici's Avatar
 
Join Date: Apr 2007
Posts: 131
Thanks: 4,341
Thanked 787 Times in 125 Posts
pigulici 2500+pigulici 2500+pigulici 2500+pigulici 2500+pigulici 2500+pigulici 2500+pigulici 2500+pigulici 2500+pigulici 2500+pigulici 2500+pigulici 2500+
Default

I think you need some script that combine the files looking at the names, because the names look like x and y coordinates, to me...

LE:
See this if you have Photoshop:
https://forums.adobe.com/thread/492005

or this(not tested by me):
https://github.com/Markavian/tile-merger
__________________

To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.

Last edited by pigulici; July 9th, 2017 at 01:34 PM..
pigulici is offline   Reply With Quote
The Following 8 Users Say Thank You to pigulici For This Useful Post:
Old July 9th, 2017, 09:18 PM   #3
retroanalyst
in memoriam Max
 
retroanalyst's Avatar
 
Join Date: Jun 2009
Location: Germany
Posts: 3,586
Thanks: 121,989
Thanked 47,462 Times in 3,337 Posts
retroanalyst 175000+retroanalyst 175000+retroanalyst 175000+retroanalyst 175000+retroanalyst 175000+retroanalyst 175000+retroanalyst 175000+retroanalyst 175000+retroanalyst 175000+retroanalyst 175000+retroanalyst 175000+
Default

You really want something that can be scripted here, nobody wants to work on 560 files with mouse clicks. Fortunately that's not too difficult since the big picture is nicely grouped into a grid of 35x16 small images, each one 256x256 pixels (except for the last row which is only 211 pixels high).

The convert command from the ImageMagick suite can stitch these together, I did it the following way (this assumes a shell like bash):

Code:
for column in {0..15}; do convert -append 6-$column-{0..34}.jpg ${column}.jpg; done
convert +append {0..15}.jpg Dorothy_Stratten.jpg
First we combine all the rows, then the colums. The result:



Enjoy!
__________________
Genius may have its limitations, but stupidity is not thus handicapped.
retroanalyst is offline   Reply With Quote
The Following 5 Users Say Thank You to retroanalyst For This Useful Post:
Old July 9th, 2017, 11:29 PM   #4
theLoster
Senior Member
 
Join Date: Jun 2017
Posts: 135
Thanks: 421
Thanked 2,137 Times in 133 Posts
theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+
Default

Thanks for the heads up on ImageMagick. I've been playing around with it in php. I've been able to assemble various tiles together into a single image. The code I have for displaying it is
Code:
  header("Content-Type: image/png"); 
  $combined->setImageFormat("png");
  echo $combined;
The thing is, with that, the image is the only thing I can have on the webpage. Might you (or anyone) know how I can embed the contents of an ImageMagick image object as an html IMG object. I'd almost want to put something like
Code:
echo " <img alt=\"Embedded Image\" src=\"";
echo $combined;
echo "\">";
But I obviously have to do more to it than that since all I get is page after page of hieroglyphics.

(disclaimer: I don't know a whole lot about scripting, but I'm pretty good and copying examples and beating on it till I'm able to force it to do what I want)
theLoster is online now   Reply With Quote
The Following 2 Users Say Thank You to theLoster For This Useful Post:
Old July 10th, 2017, 12:04 AM   #5
theLoster
Senior Member
 
Join Date: Jun 2017
Posts: 135
Thanks: 421
Thanked 2,137 Times in 133 Posts
theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+
Default

A little more internet searching found the trick for me. The line I ended up with is
Code:
echo "<img src='data:image/png;base64,".base64_encode($combined)."' />";
And that did it for me.

I'm probably not going to modify the script that I have at the above provided link (sorry). I'd be too afraid that someone might get the impression that I'm hosting the images rather than merely linking back to playb0y for them.

I think I will put a link on the index page for them back to here to show others how they might be able to do it (if you don't mind).
theLoster is online now   Reply With Quote
The Following 2 Users Say Thank You to theLoster For This Useful Post:
Old October 2nd, 2020, 05:31 PM   #6
yag-kosha
Member
 
yag-kosha's Avatar
 
Join Date: Mar 2008
Posts: 99
Thanks: 1,422
Thanked 1,024 Times in 91 Posts
yag-kosha 5000+yag-kosha 5000+yag-kosha 5000+yag-kosha 5000+yag-kosha 5000+yag-kosha 5000+yag-kosha 5000+yag-kosha 5000+yag-kosha 5000+yag-kosha 5000+yag-kosha 5000+
Default

Quote:
Originally Posted by theLoster View Post
A little more internet searching found the trick for me. The line I ended up with is
Code:
echo "<img src='data:image/png;base64,".base64_encode($combined)."' />";
And that did it for me.

I'm probably not going to modify the script that I have at the above provided link (sorry). I'd be too afraid that someone might get the impression that I'm hosting the images rather than merely linking back to playb0y for them.

I think I will put a link on the index page for them back to here to show others how they might be able to do it (if you don't mind).
Is there a (brief) tutorial for those of us mentally-stunted types who aren't programmers or coders? When I click on one of the links I get nothing but alphanumeric data -- no pix!
yag-kosha is offline   Reply With Quote
The Following User Says Thank You to yag-kosha For This Useful Post:
Old October 3rd, 2020, 05:09 AM   #7
theLoster
Senior Member
 
Join Date: Jun 2017
Posts: 135
Thanks: 421
Thanked 2,137 Times in 133 Posts
theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+theLoster 10000+
Default

What's described here would require at least php programming. Also, the individual image tiles on the megazoom page used to be freely available to download from the rabbit company's website, but they are no longer available (at least that I've been able to find).

If you have the patience, you can find some of them still available from the wayback machine (via the link you included). I just checked one and it wasn't there, then checked another and it was, so it seems to be a hit or miss proposition.

That alphanumeric stuff you're seeing is the indication that the image tiles are no longer available.
theLoster is online now   Reply With Quote
The Following User Says Thank You to theLoster For This Useful Post:
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump




All times are GMT. The time now is 12:03 AM.






vBulletin Optimisation provided by vB Optimise v2.6.1 (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.