Skip to main content
Participant
July 5, 2007
Question

Parsing .ai files

  • July 5, 2007
  • 2 replies
  • 1517 views
The project I am currently working on requires that I be able to extract information from .ai files. The last bit of information that I need is the 'BoundingBox' around the art: ie. the size of the box that appears when you select all with ctrl+a. Does anyone know if this SDK will allow me to do this? If not, can anyone suggest an alternative library? (Java preferred)
This topic has been closed for replies.

2 replies

3DTOPO
Inspiring
July 11, 2007
The answer is Yes.

Check out the function GetArtBounds from the "Art Suite":

RealRect bounds;
error = sArt->GetArtBounds( art, &bounds );

Regards,

Jeshua Lacock, Owner

phone: 877.240.1364
Participant
July 6, 2007
I am also looking for same requirement...