
Hello
I have to find X,Y coordinated of object with use of source code.I don't wants to use Extension option. I try to write code for the same ,It gives only one objects coordinate.The following code i write for get X,Y coordinated. Please let me know how can i get XY coordinate All SPObject on screen .
FILE *fp; fp=fopen("D:\Data.txt","w"); SPDocument *doc=inkscape_active_document();
if(doc == NULL ) {
return true; } Inkscape::XML::Node *root = doc->getReprRoot(); Inkscape::XML::Node *path = sp_repr_lookup_name(root, "svg:path", -1); // if ( path == NULL ) {
doc->doUnref(); return true;
} gchar const *svgd = path->attribute("d"); fprintf(fp,"PATH2: %s\n", svgd); }
Thanks