Do you own a Debenu Quick PDF Library version 7, 8, 9, 10, 11, 12, 13 or iSEDQuickPDF license? Upgrade to Debenu Quick PDF Library 14 today!

Debenu Quick PDF Library - PDF SDK Community Forum Homepage
Forum Home Forum Home > For Users of the Library > I need help - I can help
  New Posts New Posts RSS Feed - PDF preflight
  FAQ FAQ  Forum Search   Register Register  Login Login

PDF preflight

 Post Reply Post Reply
Author
Message
deus View Drop Down
Beginner
Beginner


Joined: 29 Mar 07
Status: Offline
Points: 1
Post Options Post Options   Thanks (0) Thanks(0)   Quote deus Quote  Post ReplyReply Direct Link To This Post Topic: PDF preflight
    Posted: 29 Mar 07 at 5:48AM
Hi All ,
 
Im using iSED library for color space detection of the PDF's. In other words i want to make a "simple" logic that will decide whatever the pdf is in color or black/white. I don't know how to achive this? I doubt if iSED library is able to extract that info from the pdf correct me if im wrong.
 
 
Thanks in advance
Deus
 
Back to Top
Ingo View Drop Down
Moderator Group
Moderator Group
Avatar

Joined: 29 Oct 05
Status: Offline
Points: 3524
Post Options Post Options   Thanks (0) Thanks(0)   Quote Ingo Quote  Post ReplyReply Direct Link To This Post Posted: 29 Mar 07 at 8:48AM
Hi Deus!

You're right. That's not possible with QuickPDF. But ...
To get the color schemes you can use this (Delphi):
Edit1.Text contains the filename...

   var textcomplete : String;
       fs : TFileStream;
// . . .

   FileSetAttr(Trim(Edit1.Text), faArchive);

// . . .

   textcomplete := '';
   fs := TFileStream.Create(Edit1.Text,fmOpenRead+fmShareDenyWrite);
   try
     SetLength(textcomplete,fs.Size);
     fs.Read(PChar(textcomplete)^,fs.Size);
   finally
     fs.Free;
   end;

// . . .

   If Pos('/Device', textcomplete) > 0 Then
      begin
         cscheme.Text := System.Copy(textcomplete, Pos('/Device', textcomplete) + 7, 4);
         cscheme.Text := Trim(cscheme.text);
      end
     else
      cscheme.Text := 'Nothing';


Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 11.01
Copyright ©2001-2014 Web Wiz Ltd.

Copyright © 2017 Debenu. Debenu Quick PDF Library is a PDF SDK. All rights reserved. AboutContactBlogSupportOnline Store