2016-02-14 07:27:46 +08:00
|
|
|
/* compute-svg-viewbox.c
|
|
|
|
* Copyright (C) 2016 Jehan
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2018-07-12 05:27:07 +08:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2016-02-14 07:27:46 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <librsvg/rsvg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
int main (int argc, char **argv)
|
|
|
|
{
|
|
|
|
RsvgHandle *handle;
|
|
|
|
RsvgPositionData position_data;
|
|
|
|
RsvgDimensionData dimension;
|
|
|
|
|
|
|
|
gchar *endptr;
|
|
|
|
gchar *path;
|
|
|
|
gchar *id;
|
|
|
|
gint prev_x;
|
|
|
|
gint prev_y;
|
|
|
|
|
|
|
|
if (argc != 5)
|
|
|
|
{
|
|
|
|
fprintf (stderr, "Usage: compute-svg-viewbox path object_id x y\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
prev_x = strtol (argv[3], &endptr, 10);
|
|
|
|
if (endptr == argv[3])
|
|
|
|
{
|
|
|
|
fprintf (stderr, "Error: the third parameter must be an integer\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
prev_y = strtol (argv[4], &endptr, 10);
|
|
|
|
if (endptr == argv[4])
|
|
|
|
{
|
|
|
|
fprintf (stderr, "Error: the fourth parameter must be an integer\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
path = argv[1];
|
|
|
|
handle = rsvg_handle_new_from_file (path, NULL);
|
|
|
|
if (! handle)
|
|
|
|
{
|
|
|
|
fprintf (stderr, "Error: wrong path \"%s\".\n", path);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-09-11 07:04:06 +08:00
|
|
|
id = g_strdup_printf ("#%s", argv[2]);
|
2016-02-14 07:27:46 +08:00
|
|
|
if (! rsvg_handle_has_sub (handle, id))
|
|
|
|
{
|
|
|
|
fprintf (stderr, "Error: the id \"%s\" does not exist.\n", id);
|
|
|
|
g_object_unref (handle);
|
|
|
|
g_free (id);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
rsvg_handle_get_position_sub (handle, &position_data, id);
|
|
|
|
rsvg_handle_get_dimensions_sub (handle, &dimension, id);
|
|
|
|
if (dimension.width != dimension.height)
|
|
|
|
{
|
|
|
|
/* Right now, we are constraining all objects into square objects. */
|
|
|
|
fprintf (stderr, "WARNING: object \"%s\" has unexpected size %dx%d [pos: (%d, %d)].\n",
|
|
|
|
id, dimension.width, dimension.height,
|
|
|
|
position_data.x, position_data.y);
|
|
|
|
}
|
2017-09-11 07:04:06 +08:00
|
|
|
printf ("viewBox=\"%d %d %d %d\"",
|
|
|
|
position_data.x + prev_x, position_data.y + prev_y,
|
|
|
|
dimension.width, dimension.height);
|
2016-02-14 07:27:46 +08:00
|
|
|
|
|
|
|
g_object_unref (handle);
|
|
|
|
g_free (id);
|
|
|
|
return 0;
|
|
|
|
}
|