Recent

Author Topic: PostScript (page 01) for preview display via FPvectorial?  (Read 17694 times)

PaulANormanNZ

  • Full Member
  • ***
  • Posts: 115
PostScript (page 01) for preview display via FPvectorial?
« on: August 04, 2017, 04:09:44 am »
Hi,

Just a quick question - been looking through the examples for FPvectorial, and wondered please if there is any code for loading a standard PostSctipt (not EPS) and 'rendering out' a Bitmap or  stream in memory to load in a TPicture or something...

I'm trying to avoid writing and reading from Disk.

I need previews for PostScript files, and have looked at GhostScript from a shell, or DLL approach, but as .ps files can be quite large, everything is looking most likely to be a bit slow and wondered if FPvectorial could give me the first page of a PostScript file to show as a Bitmap or in other component at all please?

RELATED (would become another thread I suppose): Is it conceivable to run Tprocess or something in memory and get the filestream from GhostScript back into a bitmap via a MemorytStream? I saw another posting but it seemed to resort to loading from disk - which is a time problem again. ( http://forum.lazarus.freepascal.org/index.php/topic,31686.msg205535.html#msg205535 )

I thought though that something done in FPvectorial would be more native to FreePascal and so possibly faster?

Paul

Blestan

  • Sr. Member
  • ****
  • Posts: 461
Re: PostScript (page 01) for preview display via FPvectorial?
« Reply #1 on: August 04, 2017, 07:15:14 am »
hi eps and postscript files are 90% equal and extremely complex data formats.... it is impossible to write an ps interpreter for ps/eps preview... the format is language and needs a proper runtime to execute.. so, buy a faster disk and cpu and use ghostscript... even imagemagic relies on gs ...
fpvectorial is ina very early and raw stage.... supporting partialy some formats just to manipulate data.its out of question to do some rendering with it the next 30-40 years ;).
please for ps/eps/pdf stick to adobe print engine/ aladin ghostscript/ harlequin ps rip

« Last Edit: August 04, 2017, 07:24:00 am by Blestan »
Speak postscript or die!
Translate to pdf and live!

felipemdc

  • Administrator
  • Hero Member
  • *
  • Posts: 3538
Re: PostScript (page 01) for preview display via FPvectorial?
« Reply #2 on: August 04, 2017, 04:20:48 pm »
hi eps and postscript files are 90% equal and extremely complex data formats.... it is impossible to write an ps interpreter for ps/eps preview... the format is language and needs a proper runtime to execute.. so, buy a faster disk and cpu and use ghostscript... even imagemagic relies on gs ...
fpvectorial is ina very early and raw stage.... supporting partialy some formats just to manipulate data.its out of question to do some rendering with it the next 30-40 years ;).
please for ps/eps/pdf stick to adobe print engine/ aladin ghostscript/ harlequin ps rip

What are you talking about?

I wrote fpvectorial so I can say that the EPS drawer is the best drawer I've written, because the format is relatively easy to implement, being simply a programming language.

SVG and HTML are real nightmares, extremely complex and far harder to implement in comparison, because they support so many gradients, transformation matrixes, etc.

Thaddy

  • Hero Member
  • *****
  • Posts: 14157
  • Probably until I exterminate Putin.
Re: PostScript (page 01) for preview display via FPvectorial?
« Reply #3 on: August 04, 2017, 05:17:03 pm »
fpvectorial is ina very early and raw stage....
That's simply not true. EPS is feature complete. Other formats are in usable (may or may not be feature complete) and in a stable state.
Felipe does a great job.
Specialize a type, not a var.

Blestan

  • Sr. Member
  • ****
  • Posts: 461
Re: PostScript (page 01) for preview display via FPvectorial?
« Reply #4 on: August 04, 2017, 10:48:12 pm »
 as as said eps is 90% ps and the devil is in the details
and eps is. not ps but may be fpvectorial handles ps and. eps both
the original post is for ps
 sorry for my iignorance:
can you point me with  simple links to:
1: an fpvectorial for an equvalent of ps2ps
2: font rendering code of ttf an pbf/ psf fonts glif and here is the default forder for .psf ttf fonts files.
3: patern filll with cliping regions on deviceN bitmaps
4: color managment system code for cmyk  1bit biitmap rendering to fogra39 profile and where are the other color profiles stored?
5: handling color separations of rgb to ciellab color space
6: grapient fill by @proc with stack push / restore
7: rendering of device indepentent color space
8: color trapping and overprinting on lets say deviveN with spot colors + cmyk
9: OPI handling in fpvectorial
10: simple rendering of ps to bitmmap with XObjects proc and spot colors mapping for layered tifs with alpha chanels?
11. handling of registration color gradients
12. 1bit rendering for euclidian, eleptical  and stohastic screening with black dot compensation and under color removal
13. memory limits for gradient rendering on device independent bitmaps
14. handling different stoke origins and end caps

for such a complete and mature implementation it will be an easy task to pin point me exact lines in code :)³
thanks in advance 
ps :
for all who will continue the discution on ps please give some hints on the following simple newbie code before arguing with me :
 gsave
  newpath
   0 0 moveto
   (X) false charpath flattenpath pathbbox
    grestore

how many values on the stack after this code?

cheers
« Last Edit: August 05, 2017, 12:15:22 am by Blestan »
Speak postscript or die!
Translate to pdf and live!

PaulANormanNZ

  • Full Member
  • ***
  • Posts: 115
Re: PostScript (page 01) for preview display via FPvectorial?
« Reply #5 on: August 05, 2017, 07:53:48 am »
Hi,

Thank you for the replies.

I was asking about this, as the page for FPvectorial does list links for the PostScript format, so I was hoping that perhaps the EPS engine may help.( http://wiki.freepascal.org/fpvectorial#PostScript )

I have to openly agree that Felipe has done a major job already on all this of great merit - seriously! I have worked with the Corel .cdr format in the deep past and it does take a lot of work to do this stuff. Inkscape have lifted up code to be able to comprehensively import up to CorelDraw 14 now, https://inkscape.org/en/

For .cdr I wonder if there are any units there worth translating to FreePascal?

Blestan those are good questions, I was wondering if some of that would already be in the EPS units?

However I do think that:
Quote
so, buy a faster disk and cpu and use ghostscript...
is extraordinary guidance for OpenSource developers - it seems to me more like something Microsoft would say  %)
I don't think I could, or should, even suggest that to Users! Makes our FreePascal sound lame!

So just to clear things up for me please, from the discussion so far ... generally it seems we are not yet in a position to do PostScript canvas rendering in Lazarus with FPvectorial for now?

Thanks,
paul

Blestan

  • Sr. Member
  • ****
  • Posts: 461
Re: PostScript (page 01) for preview display via FPvectorial?
« Reply #6 on: August 05, 2017, 08:11:11 am »
Ghostscript is an interpreter for PostScript™ and Portable Document Format (PDF) files. It is available both under the GNU GPL Affero license and for commercial licensing from Artifex. It has been under active development for over 20 years and has been ported to many different systems during this time.

so if a product is under gnu licence but not writen in fpc does not make it lame or ms  >:D

by the way i have writen a fpc bindings for mupdf because 2-3 years ago no opensource pdf rendering existed ever for fpc
Speak postscript or die!
Translate to pdf and live!

Blestan

  • Sr. Member
  • ****
  • Posts: 461
Re: PostScript (page 01) for preview display via FPvectorial?
« Reply #7 on: August 05, 2017, 08:26:10 am »
P.S: after a brief exam of gs i noted that it can be compiled as library and use the api very very eficiently for you work! i can also help with binding if none exists  :)
Speak postscript or die!
Translate to pdf and live!

Blestan

  • Sr. Member
  • ****
  • Posts: 461
Re: PostScript (page 01) for preview display via FPvectorial?
« Reply #8 on: August 05, 2017, 08:34:09 am »
this can be a good starting point
https://github.com/tristan2468/PDFPrint?files=1
take alook if its ok for you and we can fork!
Speak postscript or die!
Translate to pdf and live!

PaulANormanNZ

  • Full Member
  • ***
  • Posts: 115
Re: PostScript (page 01) for preview display via FPvectorial?
« Reply #9 on: August 05, 2017, 12:27:17 pm »
Thanks Blestan, but you entirely missed the point I'm afraid.

Quote
so if a product is under gnu licence but not writen in fpc does not make it lame or ms

Paul

Blestan

  • Sr. Member
  • ****
  • Posts: 461
Re: PostScript (page 01) for preview display via FPvectorial?
« Reply #10 on: August 05, 2017, 01:02:14 pm »
what did i missed ? you wand to avoid running gs from separate process to speedup rendering and i proposed to use gs as dll ... keep in mind that ps rendering is a slow process im dealing witb it from 1993
Speak postscript or die!
Translate to pdf and live!

PaulANormanNZ

  • Full Member
  • ***
  • Posts: 115
Re: PostScript (page 01) for preview display via FPvectorial?
« Reply #11 on: August 05, 2017, 01:22:42 pm »
by the way i have writen a fpc bindings for mupdf because 2-3 years ago no opensource pdf rendering existed ever for fpc

That is an excellent piece of work, I use mupdflaz mupdfview component made by Malcolm Poole inspired by your work Blestan - never had a glitch with it thanks.

Paul

PaulANormanNZ

  • Full Member
  • ***
  • Posts: 115
Re: PostScript (page 01) for preview display via FPvectorial?
« Reply #12 on: August 05, 2017, 01:25:32 pm »
That's a great idea Blestan.

Is there any way of getting the output back into Lazarus as a TStream of some sort without going via disk at all please?

Or will using the DLL require it going via GS's normal route, to file first?

Paul

what did i missed ? you wand to avoid running gs from separate process to speedup rendering and i proposed to use gs as dll ... keep in mind that ps rendering is a slow process im dealing witb it from 1993

PaulANormanNZ

  • Full Member
  • ***
  • Posts: 115
Re: PostScript (page 01) for preview display via FPvectorial?
« Reply #13 on: August 05, 2017, 01:45:58 pm »
what did i missed ? you wand to avoid running gs from separate process to speedup rendering and i proposed to use gs as dll ... keep in mind that ps rendering is a slow process im dealing witb it from 1993

Sorry if there is any misunderstanding - all I meant that if we could have something more natively FreePascal it would be faster and we wouldn't have to recommend upgrading disks and cpu etc. Otherwise we make FreePascal out to be lame - not MS or GS.

Paul

Blestan

  • Sr. Member
  • ****
  • Posts: 461
Re: PostScript (page 01) for preview display via FPvectorial?
« Reply #14 on: August 05, 2017, 03:20:27 pm »
i think that gs has a displaay callback so examine this
gsapi_set_display_callback()
this should work
Speak postscript or die!
Translate to pdf and live!

 

TinyPortal © 2005-2018