Inkscape logo on a book cover
by mail@...2227...
Hi all,
i need some help.
I wrote a book and now i would like to put the inkscape logo on the cover of the book.
Is it allowed to do so? What do i have to observe?
My second question:
I would like to put the program on an CD with the book. Can i do this too?
Thanks for your help.
Sincerely
Uwe Schoeler
13 years, 8 months
Broken feImage and lib2geom matrix inversion
by Tavmjong Bah
Hi,
I've traced the problem with the broken feImage filter primitive (see
https://bugs.launchpad.net/inkscape/+bug/382313 ) to a problem with
lib2geom. More specifically, Geom::Matrix.inverse() returns an incorrect
matrix. I run this simple test program:
#include <iostream>
#include <2geom/matrix.h>
int main() {
Geom::Matrix test_matrix1( 0.003333, 0.000000, 0.000000, 0.003333,
0.083333, 0.083333 );
Geom::Matrix test_inverse1 = test_matrix1.inverse();
std::cout << "Test input" << std::endl;
std::cout << test_matrix1 << std::endl;
std::cout << "Test output" << std::endl;
std::cout << test_inverse1 << std::endl;
Geom::Matrix test_matrix2( 0.003077, 0.000000, 0.000000, 0.003077,
0.076923, 0.076923 );
Geom::Matrix test_inverse2 = test_matrix2.inverse();
std::cout << "Test input" << std::endl;
std::cout << test_matrix2 << std::endl;
std::cout << "Test output" << std::endl;
std::cout << test_inverse2 << std::endl;
}
The output I see is:
Test input
A: 0.003333 C: 0 E: 0.083333
B: 0 D: 0.003333 F: 0.083333
Test output
A: 300.03 C: -0 E: -25.0024
B: -0 D: 300.03 F: -25.0024
Test input
A: 0.003077 C: 0 E: 0.076923
B: 0 D: 0.003077 F: 0.076923
Test output
A: 1 C: 0 E: 0
B: 0 D: 1 F: 0
You can see that the first matrix inversion is correct but the second is
wrong. This was tested with SVN as of yesterday on Linux.
Tav
13 years, 9 months
Re: [Inkscape-devel] [Lib2geom-devel] FW: Broken feImage and lib2geommatrix inversion
by unknown@example.com
Looking at the code, it seems that it used to be possible to specify the
"numerical tolerance". Shall we put this back in?
> -----Original Message-----
> From: J.B.C.Engelen@...1578...
> [mailto:J.B.C.Engelen@...1578...]
> Sent: maandag 31 augustus 2009 9:57
> To: lib2geom-devel(a)lists.sourceforge.net
> Cc: tavmjong@...8...
> Subject: [Lib2geom-devel] FW: [Inkscape-devel] Broken feImage
> and lib2geommatrix inversion
>
> Hi guys,
>
> See the email below.
>
> > -----Original Message-----
> > From: Tavmjong Bah [mailto:tavmjong@...8...]
> > Sent: Sunday, August 30, 2009 13:10
> > To: Inkscape Devel List
> > Subject: [Inkscape-devel] Broken feImage and lib2geom
> matrix inversion
> >
> >
> >
> > Hi,
> >
> > I've traced the problem with the broken feImage filter
> primitive (see
> > https://bugs.launchpad.net/inkscape/+bug/382313 ) to a problem with
> > lib2geom. More specifically,
> > Geom::Matrix.inverse() returns an incorrect matrix. I run
> this simple
> > test program:
> >
> > #include <iostream>
> > #include <2geom/matrix.h>
> >
> > int main() {
> >
> > Geom::Matrix test_matrix1( 0.003333, 0.000000, 0.000000,
> 0.003333,
> > 0.083333, 0.083333 );
> >
> > Geom::Matrix test_inverse1 = test_matrix1.inverse();
> >
> > std::cout << "Test input" << std::endl;
> > std::cout << test_matrix1 << std::endl;
> >
> > std::cout << "Test output" << std::endl;
> > std::cout << test_inverse1 << std::endl;
> >
> > Geom::Matrix test_matrix2( 0.003077, 0.000000, 0.000000,
> 0.003077,
> > 0.076923, 0.076923 );
> >
> > Geom::Matrix test_inverse2 = test_matrix2.inverse();
> >
> > std::cout << "Test input" << std::endl;
> > std::cout << test_matrix2 << std::endl;
> >
> > std::cout << "Test output" << std::endl;
> > std::cout << test_inverse2 << std::endl; }
> >
> > The output I see is:
> >
> > Test input
> > A: 0.003333 C: 0 E: 0.083333
> > B: 0 D: 0.003333 F: 0.083333
> >
> > Test output
> > A: 300.03 C: -0 E: -25.0024
> > B: -0 D: 300.03 F: -25.0024
> >
> > Test input
> > A: 0.003077 C: 0 E: 0.076923
> > B: 0 D: 0.003077 F: 0.076923
> >
> > Test output
> > A: 1 C: 0 E: 0
> > B: 0 D: 1 F: 0
> >
> > You can see that the first matrix inversion is correct but
> the second
> > is wrong. This was tested with SVN as of yesterday on Linux.
> >
> > A bit more info.
> >
> > In Geom::Matrix::inverse() the matrix determinate is calculated and
> > then compared to the constant EPSILON which is defined as 10^-5 (in
> > coord.h).
> > If it is less than EPSILON the matrix is set to unity. This
> EPSILON is
> > clearly way too large for use in inverse(). For some reason
> a value of
> > 10^-18 in commented out in coord.h. My guess is that the
> value 10^-5
> > was selected for comparing pixel positions to each other but it is
> > being used for other purposes in the lib2geom library.
> >
> > Tav
> >
>
> --------------------------------------------------------------
> ----------------
> Let Crystal Reports handle the reporting - Free Crystal
> Reports 2008 30-Day
> trial. Simplify your report design, integration and
> deployment - and focus on
> what you do best, core application coding. Discover what's new with
> Crystal Reports now. http://p.sf.net/sfu/bobj-july
> _______________________________________________
> Lib2geom-devel mailing list
> Lib2geom-devel(a)lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/lib2geom-devel
>
13 years, 9 months
Thank you from Brazil
by Aurélio A. Heckert
I think you will love to read this.
That is a e-mail (with translation) from Leon Prado, a
brazilian artist that uses Inkscape for professional works:
---------- Forwarded message ----------
From: Leon Prado <leonlatour@...400...>
Date: 2009/8/25
To: Comunidade Inkscape Brasil <inkscape-brasil@...2207...>
Subject: [Inkscape Brasil] AGRADECIMENTOS MAIS AGRADECIMENTO
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[Inkscape Brazil] Thanks and more
thanks!!!!!!!!!!!!!!!!!!!!!!!!!!!!
GENTE ESCREVO ESSE EMAIL EM MAIÚSCULA PORQUE EH QUASE UM GRITO MESMO :P
Folks, i write this this e-mail in uppercase because it is like a
screaming, really :-p
QUERO AGRADECER A NOSSOS QUERIDOS PROGRAMADORES!!!!
I want to thank our dear programmers!!!
CARA O INK ESTA MUIIIIIIITO BOM !!!!!
Man, the inkscape is veeeeery good!!!
AS NOVAS IMPLEMENTAÇÕES ESTÃO MARAVILHOSAS E O NOSSO
PROGRAMINHA DO CORAÇÃO DEU UM INCRÍVEL AVANÇO!!!
The new implementations are beautiful and the little program
of our heart make a incredible advance!!!
VOCÊS ESTÃO DE PARABÉNS !!!!!!!! ELE FACILITA NOSSA VIDA !!!!!!
You are to be congratulated!!! It make ou life easy!!!
grato, leon prado
Thanks, Leon Prado
--
Leon Prado...
(61) 8190.7373
msn: leonlatour@...19...
http://leonprado.deviantart.com
http://leonlatour.blogspot.com
13 years, 9 months
Spiro LPE causing hard inkscape/DE crash -> trunk r22133
by Bernard Gray
Hi,
I've been experiencing a hard crash whenever I try to use the spiro
LPE - the symptom has been around for at least 2 weeks now, my last
confirmed build was trunk r22133.
I've tested on :
Debian sid
- kde4.3 - doesn't crash kde for me, but someone else has reported it doing so
- gnome 2.28 - crashed gnome as well for me
Ubuntu 9.04
- gnome 2.26 - didn't crash the DE, I got a traceback[1]
I've tested the 0.47 pre2 built for windows by ChrisMorgan, spiros are
fine there -
Can anyone confirm this issue is not just me/my packages?
Regards,
Bernie
===========
[1]
*** glibc detected *** inkscape: munmap_chunk(): invalid pointer:
0x0000000007d286e0 ***
======= Backtrace: =========
/lib/libc.so.6[0x7f6f67575cb8]
inkscape[0x6c931a]
inkscape[0x6c9547]
inkscape[0x6c313d]
inkscape[0x4d148a]
inkscape[0x4e0ad7]
inkscape[0x4d1893]
inkscape[0x4d29bc]
inkscape[0x67272c]
inkscape[0x8d1895]
inkscape[0x8d1d66]
inkscape[0x8d2062]
inkscape[0x929595]
inkscape[0x92adff]
inkscape[0x92b4ab]
inkscape[0x461da2]
inkscape[0x8c2327]
inkscape[0x614e30]
/usr/lib/libgobject-2.0.so.0(g_closure_invoke+0x16d)[0x7f6f6bedc27d]
/usr/lib/libgobject-2.0.so.0[0x7f6f6bef1e3b]
/usr/lib/libgobject-2.0.so.0(g_signal_emit_valist+0x66d)[0x7f6f6bef32bd]
/usr/lib/libgtk-x11-2.0.so.0(gtk_signal_emit+0xe5)[0x7f6f6dad2f65]
inkscape[0x58c620]
inkscape[0x58e4d2]
/usr/lib/libgtk-x11-2.0.so.0[0x7f6f6d969df8]
/usr/lib/libgobject-2.0.so.0(g_closure_invoke+0x16d)[0x7f6f6bedc27d]
/usr/lib/libgobject-2.0.so.0[0x7f6f6bef1b1e]
/usr/lib/libgobject-2.0.so.0(g_signal_emit_valist+0x66d)[0x7f6f6bef32bd]
/usr/lib/libgobject-2.0.so.0(g_signal_emit+0x83)[0x7f6f6bef3953]
/usr/lib/libgtk-x11-2.0.so.0[0x7f6f6da7209e]
/usr/lib/libgtk-x11-2.0.so.0(gtk_propagate_event+0xe3)[0x7f6f6d962693]
/usr/lib/libgtk-x11-2.0.so.0(gtk_main_do_event+0x2e3)[0x7f6f6d9637b3]
/usr/lib/libgdk-x11-2.0.so.0[0x7f6f6d5dcf3c]
/usr/lib/libglib-2.0.so.0(g_main_context_dispatch+0x24a)[0x7f6f6b63320a]
/usr/lib/libglib-2.0.so.0[0x7f6f6b6368e0]
/usr/lib/libglib-2.0.so.0(g_main_loop_run+0x1cd)[0x7f6f6b636dad]
/usr/lib/libgtk-x11-2.0.so.0(gtk_main+0xa7)[0x7f6f6d963bc7]
inkscape[0x456849]
inkscape[0x455dce]
/lib/libc.so.6(__libc_start_main+0xe6)[0x7f6f6751c5a6]
inkscape[0x454e09]
======= Memory map: ========
00400000-00e49000 r-xp 00000000 08:01 795229
/usr/bin/inkscape
01048000-0104a000 r--p 00a48000 08:01 795229
/usr/bin/inkscape
0104a000-0105e000 rw-p 00a4a000 08:01 795229
/usr/bin/inkscape
0105e000-01069000 rw-p 0105e000 00:00 0
020f2000-07d76000 rw-p 020f2000 00:00 0 [heap]
7f6f5e91d000-7f6f5e92e000 r--p 00000000 08:01 1655332
/usr/share/fonts/truetype/ttf-bitstream-vera/Vera.ttf
7f6f5e92e000-7f6f5eaf5000 rw-p 7f6f5e92e000 00:00 0
7f6f5eaf5000-7f6f5eb10000 r--p 00000000 08:01 1688880
/usr/share/fonts/type1/gsfonts/c059016l.pfb
7f6f5eb10000-7f6f5eb70000 rw-s 00000000 00:09 1769499
/SYSV00000000 (deleted)
7f6f5eb70000-7f6f5ebf2000 rw-p 7f6f5eb70000 00:00 0
7f6f5ebf2000-7f6f5ec52000 rw-s 00000000 00:09 1736730
/SYSV00000000 (deleted)
7f6f5ec52000-7f6f5ecde000 r--p 00000000 08:01 1424
/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-Bold.ttf
7f6f5ecde000-7f6f5ed2d000 r--p 00000000 08:01 1425
/usr/share/fonts/truetype/ttf-dejavu/DejaVuSansMono.ttf
7f6f5ed2d000-7f6f5ed33000 r-xp 00000000 08:01 1655757
/usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-xpm.so
7f6f5ed33000-7f6f5ef32000 ---p 00006000 08:01 1655757
/usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-xpm.so
7f6f5ef32000-7f6f5ef33000 r--p 00005000 08:01 1655757
/usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-xpm.so
7f6f5ef33000-7f6f5ef34000 rw-p 00006000 08:01 1655757
/usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-xpm.so
7f6f5ef34000-7f6f5efcc000 r--p 00000000 08:01 1423
/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf
7f6f5efcc000-7f6f5efce000 r-xp 00000000 08:01 1655705
/usr/lib/pango/1.6.0/modules/pango-basic-fc.so
7f6f5efce000-7f6f5f1cd000 ---p 00002000 08:01 1655705
/usr/lib/pango/1.6.0/modules/pango-basic-fc.so
7f6f5f1cd000-7f6f5f1ce000 r--p 00001000 08:01 1655705
/usr/lib/pango/1.6.0/modules/pango-basic-fc.so
7f6f5f1ce000-7f6f5f1cf000 rw-p 00002000 08:01 1655705
/usr/lib/pango/1.6.0/modules/pango-basic-fc.so
7f6f5f1cf000-7f6f5f1d8000 r--s 00000000 08:01 730390
/var/cache/fontconfig/945677eb7aeaf62f1d50efc3fb3ec7d8-x86-64.cache-2
7f6f5f1d8000-7f6f5f1db000 r--s 00000000 08:01 731607
/var/cache/fontconfig/e383d7ea5fbe662a33d9b44caf393297-x86-64.cache-2
7f6f5f1db000-7f6f5f1dc000 r--s 00000000 08:01 731606
/var/cache/fontconfig/4c73fe0c47614734b17d736dbde7580a-x86-64.cache-2
7f6f5f1dc000-7f6f5f1e0000 r--s 00000000 08:01 731605
/var/cache/fontconfig/a755afe4a08bf5b97852ceb7400b47bc-x86-64.cache-2
7f6f5f1e0000-7f6f5f1e4000 r--s 00000000 08:01 730396
/var/cache/fontconfig/6d41288fd70b0be22e8c3a91e032eec0-x86-64.cache-2
7f6f5f1e4000-7f6f5f1e7000 r--s 00000000 08:01 731604
/var/cache/fontconfig/de156ccd2eddbdc19d37a45b8b2aac9c-x86-64.cache-2
7f6f5f1e7000-7f6f5f1f2000 r--s 00000000 08:01 731603
/var/cache/fontconfig/e3de0de479f42330eadf588a55fb5bf4-x86-64.cache-2
7f6f5f1f2000-7f6f5f201000 r--s 00000000 08:01 731602
/var/cache/fontconfig/0f34bcd4b6ee430af32735b75db7f02b-x86-64.cache-2
7f6f5f201000-7f6f5f204000 r--s 00000000 08:01 730395
/var/cache/fontconfig/ddd4086aec35a5275babba44bb759c3c-x86-64.cache-2
7f6f5f204000-7f6f5f205000 r--s 00000000 08:01 730394
/var/cache/fontconfig/4794a0821666d79190d59a36cb4f44b5-x86-64.cache-2
7f6f5f205000-7f6f5f20e000 r--s 00000000 08:01 731601
/var/cache/fontconfig/d52a8644073d54c13679302ca1180695-x86-64.cache-2
7f6f5f20e000-7f6f5f215000 r--s 00000000 08:01 731764
/var/cache/fontconfig/089dead882dea3570ffc31a9898cfb69-x86-64.cache-2
7f6f5f215000-7f6f5f220000 r--s 00000000 08:01 731979
/var/cache/fontconfig/e13b20fdb08344e0e664864cc2ede53d-x86-64.cache-2
7f6f5f220000-7f6f5f223000 r--s 00000000 08:01 730393
/var/cache/fontconfig/7ef2298fde41cc6eeb7af42e48b7d293-x86-64.cache-2
7f6f5f223000-7f6f5f237000 r--s 00000000 08:01 731978
/var/cache/fontconfig/865f88548240fee46819705c6468c165-x86-64.cache-2
7f6f5f237000-7f6f5f2ca000 rw-p 7f6f5f237000 00:00 0
7f6f5f2ca000-7f6f5f2ce000 r-xp 00000000 08:01 1655750
/usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-png.so
7f6f5f2ce000-7f6f5f4ce000 ---p 00004000 08:01 1655750
/usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-png.so
7f6f5f4ce000-7f6f5f4cf000 r--p 00004000 08:01 1655750
/usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-png.so
7f6f5f4cf000-7f6f5f4d0000 rw-p 00005000 08:01 1655750
/usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-png.so
7f6f5f4d0000-7f6f5f4e1000 r-xp 00000000 08:01 1770081
/usr/lib/gio/modules/libgioremote-volume-monitor.so
7f6f5f4e1000-7f6f5f6e0000 ---p 00011000 08:01 1770081
/usr/lib/gio/modules/libgioremote-volume-monitor.so
7f6f5f6e0000-7f6f5f6e1000 r--p 00010000 08:01 1770081
/usr/lib/gio/modules/libgioremote-volume-monitor.so
7f6f5f6e1000-7f6f5f6e2000 rw-p 00011000 08:01 1770081
/usr/lib/gio/modules/libgioremote-volume-monitor.so
7f6f5f6e2000-7f6f5f6f7000 r-xp 00000000 08:01 1604206
/usr/lib/libgvfscommon.so.0.0.0
7f6f5f6f7000-7f6f5f8f7000 ---p 00015000 08:01 1604206
/usr/lib/libgvfscommon.so.0.0.0
7f6f5f8f7000-7f6f5f8f8000 r--p 00015000 08:01 1604206
/usr/lib/libgvfscommon.so.0.0.0
7f6f5f8f8000-7f6f5f8f9000 rw-p 00016000 08:01 1604206
/usr/lib/libgvfscommon.so.0.0.0
7f6f5f8f9000-7f6f5f917000 r-xp 00000000 08:01 1770082
/usr/lib/gio/modules/libgvfsdbus.so
7f6f5f917000-7f6f5fb16000 ---p 0001e000 08:01 1770082
/usr/lib/gio/modules/libgvfsdbus.so
7f6f5fb16000-7f6f5fb17000 r--p 0001d000 08:01 1770082
/usr/lib/gio/modules/libgvfsdbus.so
7f6f5fb17000-7f6f5fb18000 rw-p 0001e000 08:01 1770082
/usr/lib/gio/modules/libgvfsdbus.so
7f6f5fb18000-7f6f5fb21000 r-xp 00000000 08:01 1674953
/usr/lib/gtk-2.0/2.10.0/engines/libpixmap.so
7f6f5fb21000-7f6f5fd21000 ---p 00009000 08:01 1674953
/usr/lib/gtk-2.0/2.10.0/engines/libpixmap.so
7f6f5fd21000-7f6f5fd22000 r--p 00009000 08:01 1674953
/usr/lib/gtk-2.0/2.10.0/engines/libpixmap.so
7f6f5fd22000-7f6f5fd23000 rw-p 0000a000 08:01 1674953
/usr/lib/gtk-2.0/2.10.0/engines/libpixmap.so
7f6f5fd23000-7f6f5fd30000 r-xp 00000000 08:01 1602046
/usr/lib/libtdb.so.1.1.3
7f6f5fd30000-7f6f5ff2f000 ---p 0000d000 08:01 1602046
/usr/lib/libtdb.so.1.1.3
7f6f5ff2f000-7f6f5ff30000 r--p 0000c000 08:01 1602046
/usr/lib/libt
Emergency save activated!
Emergency save document locations:
/home/bgray/New document 1.2009_08_28_12_52_08.0.svg
Emergency save completed. Inkscape will close now.
If you can reproduce this crash, please file a bug at www.inkscape.org
with a detailed description of the steps leading to the crash, so we can fix it.
*** glibc detected *** inkscape: munmap_chunk(): invalid pointer:
0x0000000007d522f0 ***
======= Backtrace: =========
/lib/libc.so.6[0x7f6f67575cb8]
inkscape[0x6c931a]
inkscape[0x6c9547]
inkscape[0x6c313d]
inkscape[0x4d148a]
inkscape[0x4e0ad7]
inkscape[0x4d1893]
inkscape[0x4d9e70]
inkscape[0x4b2d18]
inkscape[0x4d9dc3]
inkscape[0x4c6d18]
inkscape[0x4e9267]
inkscape[0x4d9dc3]
inkscape[0x45bf58]
inkscape[0x45c117]
inkscape[0x45c229]
/usr/lib/libglib-2.0.so.0(g_main_context_dispatch+0x24a)[0x7f6f6b63320a]
/usr/lib/libglib-2.0.so.0[0x7f6f6b6368e0]
/usr/lib/libglib-2.0.so.0(g_main_loop_run+0x1cd)[0x7f6f6b636dad]
/usr/lib/libgtk-x11-2.0.so.0(gtk_dialog_run+0x194)[0x7f6f6d8ebef4]
inkscape[0x476deb]
/lib/libc.so.6[0x7f6f67531040]
/lib/libc.so.6(gsignal+0x35)[0x7f6f67530fb5]
/lib/libc.so.6(abort+0x183)[0x7f6f67532bc3]
/lib/libc.so.6[0x7f6f67570228]
/lib/libc.so.6[0x7f6f67575cb8]
inkscape[0x6c931a]
inkscape[0x6c9547]
inkscape[0x6c313d]
inkscape[0x4d148a]
inkscape[0x4e0ad7]
inkscape[0x4d1893]
inkscape[0x4d29bc]
inkscape[0x67272c]
inkscape[0x8d1895]
inkscape[0x8d1d66]
inkscape[0x8d2062]
inkscape[0x929595]
inkscape[0x92adff]
inkscape[0x92b4ab]
inkscape[0x461da2]
inkscape[0x8c2327]
inkscape[0x614e30]
/usr/lib/libgobject-2.0.so.0(g_closure_invoke+0x16d)[0x7f6f6bedc27d]
/usr/lib/libgobject-2.0.so.0[0x7f6f6bef1e3b]
/usr/lib/libgobject-2.0.so.0(g_signal_emit_valist+0x66d)[0x7f6f6bef32bd]
/usr/lib/libgtk-x11-2.0.so.0(gtk_signal_emit+0xe5)[0x7f6f6dad2f65]
inkscape[0x58c620]
inkscape[0x58e4d2]
/usr/lib/libgtk-x11-2.0.so.0[0x7f6f6d969df8]
/usr/lib/libgobject-2.0.so.0(g_closure_invoke+0x16d)[0x7f6f6bedc27d]
/usr/lib/libgobject-2.0.so.0[0x7f6f6bef1b1e]
/usr/lib/libgobject-2.0.so.0(g_signal_emit_valist+0x66d)[0x7f6f6bef32bd]
/usr/lib/libgobject-2.0.so.0(g_signal_emit+0x83)[0x7f6f6bef3953]
/usr/lib/libgtk-x11-2.0.so.0[0x7f6f6da7209e]
/usr/lib/libgtk-x11-2.0.so.0(gtk_propagate_event+0xe3)[0x7f6f6d962693]
/usr/lib/libgtk-x11-2.0.so.0(gtk_main_do_event+0x2e3)[0x7f6f6d9637b3]
/usr/lib/libgdk-x11-2.0.so.0[0x7f6f6d5dcf3c]
/usr/lib/libglib-2.0.so.0(g_main_context_dispatch+0x24a)[0x7f6f6b63320a]
/usr/lib/libglib-2.0.so.0[0x7f6f6b6368e0]
/usr/lib/libglib-2.0.so.0(g_main_loop_run+0x1cd)[0x7f6f6b636dad]
/usr/lib/libgtk-x11-2.0.so.0(gtk_main+0xa7)[0x7f6f6d963bc7]
inkscape[0x456849]
======= Memory map: ========
00400000-00e49000 r-xp 00000000 08:01 795229
/usr/bin/inkscape
01048000-0104a000 r--p 00a48000 08:01 795229
/usr/bin/inkscape
0104a000-0105e000 rw-p 00a4a000 08:01 795229
/usr/bin/inkscape
0105e000-01069000 rw-p 0105e000 00:00 0
020f2000-07ddc000 rw-p 020f2000 00:00 0 [heap]
7f6f5e91d000-7f6f5e92e000 r--p 00000000 08:01 1655332
/usr/share/fonts/truetype/ttf-bitstream-vera/Vera.ttf
7f6f5e92e000-7f6f5eaf5000 rw-p 7f6f5e92e000 00:00 0
7f6f5eaf5000-7f6f5eb10000 r--p 00000000 08:01 1688880
/usr/share/fonts/type1/gsfonts/c059016l.pfb
7f6f5eb10000-7f6f5eb70000 rw-s 00000000 00:09 1769499
/SYSV00000000 (deleted)
7f6f5eb70000-7f6f5ebf2000 rw-p 7f6f5eb70000 00:00 0
7f6f5ebf2000-7f6f5ec52000 rw-s 00000000 00:09 1736730
/SYSV00000000 (deleted)
7f6f5ec52000-7f6f5ecde000 r--p 00000000 08:01 1424
/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-Bold.ttf
7f6f5ecde000-7f6f5ed2d000 r--p 00000000 08:01 1425
/usr/share/fonts/truetype/ttf-dejavu/DejaVuSansMono.ttf
7f6f5ed2d000-7f6f5ed33000 r-xp 00000000 08:01 1655757
/usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-xpm.so
7f6f5ed33000-7f6f5ef32000 ---p 00006000 08:01 1655757
/usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-xpm.so
7f6f5ef32000-7f6f5ef33000 r--p 00005000 08:01 1655757
/usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-xpm.so
7f6f5ef33000-7f6f5ef34000 rw-p 00006000 08:01 1655757
/usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-xpm.so
7f6f5ef34000-7f6f5efcc000 r--p 00000000 08:01 1423
/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf
7f6f5efcc000-7f6f5efce000 r-xp 00000000 08:01 1655705
/usr/lib/pango/1.6.0/modules/pango-basic-fc.so
7f6f5efce000-7f6f5f1cd000 ---p 00002000 08:01 1655705
/usr/lib/pango/1.6.0/modules/pango-basic-fc.so
7f6f5f1cd000-7f6f5f1ce000 r--p 00001000 08:01 1655705
/usr/lib/pango/1.6.0/modules/pango-basic-fc.so
7f6f5f1ce000-7f6f5f1cf000 rw-p 00002000 08:01 1655705
/usr/lib/pango/1.6.0/modules/pango-basic-fc.so
7f6f5f1cf000-7f6f5f1d8000 r--s 00000000 08:01 730390
/var/cache/fontconfig/945677eb7aeaf62f1d50efc3fb3ec7d8-x86-64.cache-2
7f6f5f1d8000-7f6f5f1db000 r--s 00000000 08:01 731607
/var/cache/fontconfig/e383d7ea5fbe662a33d9b44caf393297-x86-64.cache-2
7f6f5f1db000-7f6f5f1dc000 r--s 00000000 08:01 731606
/var/cache/fontconfig/4c73fe0c47614734b17d736dbde7580a-x86-64.cache-2
7f6f5f1dc000-7f6f5f1e0000 r--s 00000000 08:01 731605
/var/cache/fontconfig/a755afe4a08bf5b97852ceb7400b47bc-x86-64.cache-2
7f6f5f1e0000-7f6f5f1e4000 r--s 00000000 08:01 730396
/var/cache/fontconfig/6d41288fd70b0be22e8c3a91e032eec0-x86-64.cache-2
7f6f5f1e4000-7f6f5f1e7000 r--s 00000000 08:01 731604
/var/cache/fontconfig/de156ccd2eddbdc19d37a45b8b2aac9c-x86-64.cache-2
7f6f5f1e7000-7f6f5f1f2000 r--s 00000000 08:01 731603
/var/cache/fontconfig/e3de0de479f42330eadf588a55fb5bf4-x86-64.cache-2
7f6f5f1f2000-7f6f5f201000 r--s 00000000 08:01 731602
/var/cache/fontconfig/0f34bcd4b6ee430af32735b75db7f02b-x86-64.cache-2
7f6f5f201000-7f6f5f204000 r--s 00000000 08:01 730395
/var/cache/fontconfig/ddd4086aec35a5275babba44bb759c3c-x86-64.cache-2
7f6f5f204000-7f6f5f205000 r--s 00000000 08:01 730394
/var/cache/fontconfig/4794a0821666d79190d59a36cb4f44b5-x86-64.cache-2
7f6f5f205000-7f6f5f20e000 r--s 00000000 08:01 731601
/var/cache/fontconfig/d52a8644073d54c13679302ca1180695-x86-64.cache-2
7f6f5f20e000-7f6f5f215000 r--s 00000000 08:01 731764
/var/cache/fontconfig/089dead882dea3570ffc31a9898cfb69-x86-64.cache-2
7f6f5f215000-7f6f5f220000 r--s 00000000 08:01 731979
/var/cache/fontconfig/e13b20fdb08344e0e664864cc2ede53d-x86-64.cache-2
7f6f5f220000-7f6f5f223000 r--s 00000000 08:01 730393
/var/cache/fontconfig/7ef2298fde41cc6eeb7af42e48b7d293-x86-64.cache-2
7f6f5f223000-7f6f5f237000 r--s 00000000 08:01 731978
/var/cache/fontconfig/865f88548240fee46819705c6468c165-x86-64.cache-2
7f6f5f237000-7f6f5f2ca000 rw-p 7f6f5f237000 00:00 0
7f6f5f2ca000-7f6f5f2ce000 r-xp 00000000 08:01 1655750
/usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-png.so
7f6f5f2ce000-7f6f5f4ce000 ---p 00004000 08:01 1655750
/usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-png.so
7f6f5f4ce000-7f6f5f4cf000 r--p 00004000 08:01 1655750
/usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-png.so
7f6f5f4cf000-7f6f5f4d0000 rw-p 00005000 08:01 1655750
/usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-png.so
7f6f5f4d0000-7f6f5f4e1000 r-xp 00000000 08:01 1770081
/usr/lib/gio/modules/libgioremote-volume-monitor.so
7f6f5f4e1000-7f6f5f6e0000 ---p 00011000 08:01 1770081
/usr/lib/gio/modules/libgioremote-volume-monitor.so
7f6f5f6e0000-7f6f5f6e1000 r--p 00010000 08:01 1770081
/usr/lib/gio/modules/libgioremote-volume-monitor.so
7f6f5f6e1000-7f6f5f6e2000 rw-p 00011000 08:01 1770081
/usr/lib/gio/modules/libgioremote-volume-monitor.so
7f6f5f6e2000-7f6f5f6f7000 r-xp 00000000 08:01 1604206
/usr/lib/libgvfscommon.so.0.0.0
7f6f5f6f7000-7f6f5f8f7000 ---p 00015000 08:01 1604206
/usr/lib/libgvfscommon.so.0.0.0
7f6f5f8f7000-7f6f5f8f8000 r--p 00015000 08:01 1604206
/usr/lib/libgvfscommon.so.0.0.0
7f6f5f8f8000-7f6f5f8f9000 rw-p 00016000 08:01 1604206
/usr/lib/libgvfscommon.so.0.0.0
7f6f5f8f9000-7f6f5f917000 r-xp 00000000 08:01 1770082
/usr/lib/gio/modules/libgvfsdbus.so
7f6f5f917000-7f6f5fb16000 ---p 0001e000 08:01 1770082
13 years, 9 months
OS X compile help needed
by bulia byak
A friend is trying to compile Inkscape on OSX 10.5.8, but since I
never used macs before we're stuck and would appreciate any help.
After we installed the libs, we get this error when autoheader tries
to run:
checking for autoconf >= 2.52 ... yes (version 2.64)
checking for automake >= 1.10 ... yes (version 1.10)
checking for glib-gettextize >= 2.0.0 ... yes (version 2.20.4)
checking for intltool >= 0.17 ... yes (version 0.40.6)
Running aclocal-1.10 -I /opt/local/var/macports/distfiles ...
configure.ac:133: warning: macro `AM_GLIB_GNU_GETTEXT' not found in library
Running autoheader ...
autoheader: warning: missing template: ENABLE_NLS
autoheader: Use AC_DEFINE([ENABLE_NLS], [], [Description])
Please fix the error conditions and try again.
Does that ring a bell?
Thanks!
--
bulia byak
Inkscape. Draw Freely.
http://www.inkscape.org
13 years, 9 months
PDF export not working in SVN???
by Jasper van de Gronde
I can't seem to export to PDF using the version of Inkscape in SVN (no
errors, but also no PDF file...). I've attached one of the files that
doesn't export for me. I'm using a clean build of Inkscape from a recent
revision (under Windows Vista).
If someone could confirm (or not) that the attached file does not export
to PDF that would be great.
13 years, 9 months
SVG2DXF Conversion
by Pedro Sacramento
Hi,
I'm developing an online collaborative CAD with flex. I need to make a
shellscript that converts SVG to DXF, is it possible with inkscape 0.47?
Thanks and best regards,
--
Pedro Sacramento
--
www.desenhe.com
software livre e desenho colaborativo
--
Graduando em Arquitetura e Urbanismo
Universidade Federal de Viçosa
--
Estagiário
Engemais - Engenharia
www.engemais.com.br
(31) 3891 6864
--
Técnico em Informática pela ETEV
www.etev.com.br
(31) 38910404
--
5 Disse-lhe Tomé: Senhor, não sabemos para onde vais; e como podemos saber o
caminho?
6 Respondeu-lhe Jesus: Eu sou o caminho, e a verdade, e a vida; ninguém vem
ao Pai, senão por mim.
(João 14:5-6)
13 years, 9 months
Updating GTK+ on Win32
by Chris Morgan
Hi all,
At Josh Andler's request, I tried copying the new files from GTK+ site (
http://www.gtk.org/download-windows.html) over the old devlibs, overwriting
all duplicates. (To try and see if this would sort out something with
graphics tablets.) It failed in linking.
mingw32-g++ -o build/inkscape.exe -mwindows -mthreads build\inkres.o
build\obj\main.o build\obj\winmain.o build\libinkscape.a
-Lc:/devlibs-new-gtk/lib -Lc:/devlibs-new-gtk/lib -lpoppler
-Lc:/devlibs-new-gtk/lib -lpoppler-glib -Lc:/devlibs-new-gtk/lib
-lgobject-2.0 -Lc:/devlibs-new-gtk/lib -lglib-2.0 -lintl
-Lc:/devlibs-new-gtk/lib -lgdk-win32-2.0 -Lc:/devlibs-new-gtk/lib
-lgdk_pixbuf-2.0 -Lc:/devlibs-new-gtk/lib -lpangowin32-1.0 -lgdi32
-Lc:/devlibs-new-gtk/lib -lpango-1.0 -Lc:/devlibs-new-gtk/lib
-lpangocairo-1.0 -Lc:/devlibs-new-gtk/lib -lcairo -Lc:/devlibs-new-gtk/lib
-lpoppler -Lc:/devlibs-new-gtk/lib -lgtkmm-2.4 -Lc:/devlibs-new-gtk/lib
-lglibmm-2.4 -Lc:/devlibs-new-gtk/lib -lgobject-2.0 -Lc:/devlibs-new-gtk/lib
-lglib-2.0 -lintl -Lc:/devlibs-new-gtk/lib -lsigc-2.0
-Lc:/devlibs-new-gtk/lib -lgdkmm-2.4 -Lc:/devlibs-new-gtk/lib -lpangomm-1.4
-Lc:/devlibs-new-gtk/lib -lpango-1.0 -Lc:/devlibs-new-gtk/lib
-lpangocairo-1.0 -Lc:/devlibs-new-gtk/lib -lcairo -Lc:/devlibs-new-gtk/lib
-lgdk-win32-2.0 -Lc:/devlibs-new-gtk/lib -lgdk_pixbuf-2.0
-Lc:/devlibs-new-gtk/lib -lpangowin32-1.0 -lgdi32 -Lc:/devlibs-new-gtk/lib
-lcairomm-1.0 -Lc:/devlibs-new-gtk/lib -latkmm-1.6 -Lc:/devlibs-new-gtk/lib
-latk-1.0 -Lc:/devlibs-new-gtk/lib -lgtk-win32-2.0 -Lc:/devlibs-new-gtk/lib
-lgdk-win32-2.0 -Lc:/devlibs-new-gtk/lib -lgio-2.0 -Lc:/devlibs-new-gtk/lib
-lpangoft2-1.0 -Lc:/devlibs-new-gtk/lib -lpango-1.0 -Lc:/devlibs-new-gtk/lib
-lglib-2.0 -lintl -Lc:/devlibs-new-gtk/lib -lfreetype
-Lc:/devlibs-new-gtk/lib -lfontconfig -Lc:/devlibs-new-gtk/lib -lgthread-2.0
-Lc:/devlibs-new-gtk/lib -lglib-2.0 -lintl
c:/devlibs-new-gtk/bin/libxml2.dll c:/devlibs-new-gtk/bin/libxslt.dll
-Lc:/devlibs-new-gtk/lib -lcairo -Lc:/devlibs-new-gtk/lib -lcairomm-1.0
-Lc:/devlibs-new-gtk/lib -lcairo -Lc:/devlibs-new-gtk/lib -lwpg-0.1
-Lc:/devlibs-new-gtk/lib -lwpd-0.8 -Lc:/devlibs-new-gtk/lib -lwpg-stream-0.1
-Lc:/devlibs-new-gtk/lib -lwpd-0.8 c:/devlibs-new-gtk/lib/iconv.lib
-Lc:/devlibs-new-gtk/lib -lMagick++ -Lc:/devlibs-new-gtk/lib -lWand -lMagick
-Lc:/devlibs-new-gtk/lib -lfontconfig -Lc:/devlibs-new-gtk/lib -lfreetype
-lssl -lcrypto -Lc:/devlibs-new-gtk/lib -llcms -Lc:/devlibs-new-gtk/lib
-lgsl -lgslcblas -lm -lpng -ljpeg.dll -ltiff.dll
-lpopt c:/devlibs-new-gtk/lib/zdll.lib -lgc -lws2_32 -lintl -lgdi32
-lcomdlg32 -lm -lgomp -lpthreadGC2 -laspell
(Whew, copied that out by hand... well, not quite :P)
*Make error line 469: LINK problem:
c:/devlibs-new-gtk/lib/libpoppler-glib.a(CairoFontEngine.o):c:\dev\poppler\poppler-0.8.4\poppler/CairoFontEngine.cc:225:
undefined reference to `cairo_ft_font_face_create_for_ft_face'*
*collect2: Id returned 1 exit status*
Obviously this isn't good. What should I do next? I figure that I need to
update poppler (it's way out of date too) to match with the new version of
Cairo with the GTK package (1.8.8). However there aren't any build
instructions for it. I'll see if I can work it out (using the cmake gui I'm
up to it needing FreeType), but anyway, I just thought I'd tell you :-)
-- Chris Morgan <chris.morganiser@...400...>
I'm good at making two things: mistakes and enemies.
13 years, 9 months