home *** CD-ROM | disk | FTP | other *** search
/ 8bitfiles.net/archives / archives.tar / archives / genie-commodore-file-library / Information / GRAPH.920721.ARC / GRAPHIC.02 < prev   
Encoding:
Text File  |  2019-04-13  |  3.3 KB  |  105 lines

  1. Thanks, John! BTW, I got my tc128 #29 yesterday.  I'm enjoying it!
  2.  ------------
  3. Category 11,  Topic 6
  4. Message 4         Fri Oct 25, 1991
  5. C128.JBEE [* Sysop *]        (Forwarded)
  6.  
  7.  I am glad you are.  I should have had #30 back this week <sigh>, I guess
  8.  it will be next Wednesday.
  9.  One thing super about Autograph is it works very well from the CMD products
  10.  and the file conversion is nice if you want to uncompress the files to port
  11.  into Geos!
  12.  ------------
  13.  ************
  14. Topic 7         Wed Jun 24, 1992
  15. J.SWARTZ9                    at 19:37 EDT
  16. Sub: Using Mac.GIF
  17.  
  18. Getting a Mac.GIF and converting to GEOPaint
  19. 7 message(s) total.
  20.  ************
  21.  ------------
  22. Category 11,  Topic 7
  23. Message 1         Wed Jun 24, 1992
  24. J.SWARTZ9                    at 19:39 EDT
  25.  
  26. I recently DL a GIF file from the Macintish area and tried to convert to GEOS.
  27. I first used GEOGIF and it said that it was not a GIF file. I then used
  28. MACATTACK and it worked but the scan was all just lines of noise like. Is it
  29. possible to DL from the Mac area and convert to GEOS? I hope I explained
  30. enough to get an answer. Thanks, Jerry.
  31.  ------------
  32. Category 11,  Topic 7
  33. Message 2         Wed Jun 24, 1992
  34. PAUL-MB                      at 19:45 EDT
  35.  
  36.  Ahh, the infamous Mac header.  Some Macintosh GIFs attach a small header
  37.  to the start of the file just because, well, the Macintosh system feels
  38.  like it. :)
  39.  
  40.  I had this problem and went in with a track and sector editor.  But
  41.  it was hit-and-miss.  Perhaps someone here can offer a program that will
  42.  do this automatically?
  43.  
  44.                               ``` Paul ```
  45.  ------------
  46. Category 11,  Topic 7
  47. Message 3         Fri Jun 26, 1992
  48. P.CATCHPOLE [Mike]           at 21:15 EDT
  49.  
  50. Figures the mac would do something like that.
  51.  
  52. If the header is a standard length ( I think it is used to import into
  53. macpaint but i'm not sure), it would be easy to use a pc to hack it off... cbm
  54. dos makes it a pain to do that though :)
  55.  ------------
  56. Category 11,  Topic 7
  57. Message 4         Sun Jun 28, 1992
  58. D.MCLAUGHLI8 [Black Fire]    at 06:01 EDT
  59.  
  60. The MACBinary header is always 128 bytes.  It would be real easy to write a
  61. BASIC program to kill off the 128 bytes.  In fact, its sooo easy, I can do it
  62. here!
  63.  
  64.  10 open 1,8,5,"0:mac.gif"
  65.  20 open 2,8,6,"0:mac1.gif,p,w"
  66.  30 for t=1 to 128:get#1,a$:next t
  67.  40 get#1,a$:u=st:if a$="" then a$=chr$(0)
  68.  50 print#2,a$;:if (uand64)=0 then 40
  69.  60 close2:close1:end
  70.  
  71. Don't forget the (;) semicolon in line 50, VERY important!  Of course, you can
  72. also change the filenames and devices as necessary.
  73.  
  74. Doug
  75.  
  76.  ------------
  77. Category 11,  Topic 7
  78. Message 5         Sun Jun 28, 1992
  79. HOWIE-CBM                    at 10:13 EDT
  80.  
  81.  Doug,
  82.  
  83.  What an elegant little bit of programming!  :)
  84.  
  85.  Howie
  86.  ------------
  87. Category 11,  Topic 7
  88. Message 6         Sun Jun 28, 1992
  89. PAUL-MB                      at 11:25 EDT
  90.  
  91.  Thanks, Doug!
  92.                               ``` Paul ```
  93.  ------------
  94. Category 11,  Topic 7
  95. Message 7         Mon Jun 29, 1992
  96. C128.JBEE [* Sysop *]        at 00:41 EDT
  97.  
  98.  Nice one :)  BTW: you use the semicolon because if you didn't you would print
  99.  the character with a carriage return (chr$(13)) following it to the file
  100.  instead of appending a$ to the open file.
  101.  Can't tell you how many times I have neglected that one little detail.
  102.  ------------
  103.  
  104. 11 ?
  105.