Welcome, Guest. Please login or register.

Author Topic: Printing from Amiga web browsers  (Read 3035 times)

Description:

0 Members and 1 Guest are viewing this topic.

Offline Kent

  • Hero Member
  • *****
  • Join Date: Feb 2002
  • Posts: 680
    • Show all replies
    • http://amiga.org/modules/mylinks/visit.php?lid=87
Re: Printing from Amiga web browsers
« on: December 09, 2002, 05:44:26 PM »
When it comes to printing on Amiga browsers I just do a screenshot and modify the image with IFX.  I make sure to copy every section of the image and I run a quick macro to remove the borders of the program.  From there I send it to TurboPrint for printing.  Looks good.

:pint:
I love the modern age world of this middle age crises America... all these SUVs driving around like there\\\'s gas to spare and then some.

http://www.RequestFocus.com

W. Kent Seaton ~ RequestFocus.com
 

Offline Kent

  • Hero Member
  • *****
  • Join Date: Feb 2002
  • Posts: 680
    • Show all replies
    • http://amiga.org/modules/mylinks/visit.php?lid=87
Re: Printing from Amiga web browsers
« Reply #1 on: December 09, 2002, 06:33:17 PM »
Quote

SilvrDrgn wrote:
@ Kent,
Could you lend some assistance by sending your macro to my Email (at the bottom of this message)?  Thanks!


The macro is simple to create.  Load any image, press shift 1, press the size button, press the crop button and then resize each side about 10 pixels.  It doesn't matter how much you modify the edges though, just so that the edges are modified and the offset isn't changed.  Finish the crop and then press shift 2 to end the macro.  Load the macro you just created into a text editor and modify what you have just made to accomidate for the sizes that you are screendumping from.  You could extend the macro by joining all buffers together from a screengrab_xxx.ilbm, I just haven't had much time to put something like that together.  It works great the way I do it, and it handles printing of frames as the page is rendered.  Let me go grab the code real quick and I'll put it into a post here so you can save it as needed.

:pint:
I love the modern age world of this middle age crises America... all these SUVs driving around like there\\\'s gas to spare and then some.

http://www.RequestFocus.com

W. Kent Seaton ~ RequestFocus.com
 

Offline Kent

  • Hero Member
  • *****
  • Join Date: Feb 2002
  • Posts: 680
    • Show all replies
    • http://amiga.org/modules/mylinks/visit.php?lid=87
Re: Printing from Amiga web browsers
« Reply #2 on: December 09, 2002, 07:04:10 PM »
----- AWeb-Crop_1024.ifx -----
/**
 * AWeb-Crop for 1024x768
 */

OPTIONS RESULTS

Crop 6 125 997 627
----- End -----

Save the macro in ImageFX:Rexx/ dir and call it from ImageFX by pressing shift 3.  You can make tons of really good arexx scripts like this.  That's what makes IFX so powerful in comparison to other image processors.

Keep in mind your results may vary since the size of the window borders could be different along with the size of the image buttons.  Then there's the spacing setting in Reaction that can throw the ending image off as well.  There's no surefire way to capture all of the settings without getting too in depth with the program.  If you do the screengrab_xxx.ilbm you could load the sequence of images and process the collection into a new buffer sending the end result to turboprint.  Good luck whatever you do.

:pint:
I love the modern age world of this middle age crises America... all these SUVs driving around like there\\\'s gas to spare and then some.

http://www.RequestFocus.com

W. Kent Seaton ~ RequestFocus.com
 

Offline Kent

  • Hero Member
  • *****
  • Join Date: Feb 2002
  • Posts: 680
    • Show all replies
    • http://amiga.org/modules/mylinks/visit.php?lid=87
Re: Printing from Amiga web browsers
« Reply #3 on: December 09, 2002, 08:23:00 PM »
Now that I think about it you could control all of this from within AWeb with a little ARexx wizardry.  Using the command line version of cybergrab (or similar) coupled with ADDRESS COMMAND for every pagedown that can be done.  Store each of the screengrabs as screengrab_xxx.ilbm and load them into IFX cropping each of them as they are loaded.  Join each of the images to a new buffer after calculating the size.  Close the old images once the new buffer is done.  Copy and paste anything that needs to be changed.  Create another macro that sends the current image over to TurboPrint or whatever your print processor might be.

Here's a quick grab (111KB) I did with the small 2 liner above.  All I would need to do is just print it.

:pint:
I love the modern age world of this middle age crises America... all these SUVs driving around like there\\\'s gas to spare and then some.

http://www.RequestFocus.com

W. Kent Seaton ~ RequestFocus.com