Open or convert .cdr files?
up vote
8
down vote
favorite
I have a scanned image, and it's in Corel Draw (.cdr) format (~6mb). Is there a way to open it, or convert it to something that I can manage? I tried http://filespazz.com/ a few times, but it didn't work due to some timeout error.
Any suggestions?
Thanks in advance.
10.04 software-recommendation file-format
add a comment |
up vote
8
down vote
favorite
I have a scanned image, and it's in Corel Draw (.cdr) format (~6mb). Is there a way to open it, or convert it to something that I can manage? I tried http://filespazz.com/ a few times, but it didn't work due to some timeout error.
Any suggestions?
Thanks in advance.
10.04 software-recommendation file-format
You should try sk1 (Download link).
– Lincity
Jan 23 '11 at 13:51
2
Try opening.cdr
files with Inkscape.
– Vikrant Chaudhary
May 28 '12 at 12:40
1
it opened in LibreOffice Draw 4.0.3 :)
– user167139
Jun 14 '13 at 9:22
See also unix.stackexchange.com/questions/98315/…
– Nikos Alexandris
Sep 12 '14 at 18:36
add a comment |
up vote
8
down vote
favorite
up vote
8
down vote
favorite
I have a scanned image, and it's in Corel Draw (.cdr) format (~6mb). Is there a way to open it, or convert it to something that I can manage? I tried http://filespazz.com/ a few times, but it didn't work due to some timeout error.
Any suggestions?
Thanks in advance.
10.04 software-recommendation file-format
I have a scanned image, and it's in Corel Draw (.cdr) format (~6mb). Is there a way to open it, or convert it to something that I can manage? I tried http://filespazz.com/ a few times, but it didn't work due to some timeout error.
Any suggestions?
Thanks in advance.
10.04 software-recommendation file-format
10.04 software-recommendation file-format
edited Jan 21 '11 at 14:36
Stefano Palazzo♦
62.1k33183216
62.1k33183216
asked Jan 21 '11 at 14:30
tpv
2782410
2782410
You should try sk1 (Download link).
– Lincity
Jan 23 '11 at 13:51
2
Try opening.cdr
files with Inkscape.
– Vikrant Chaudhary
May 28 '12 at 12:40
1
it opened in LibreOffice Draw 4.0.3 :)
– user167139
Jun 14 '13 at 9:22
See also unix.stackexchange.com/questions/98315/…
– Nikos Alexandris
Sep 12 '14 at 18:36
add a comment |
You should try sk1 (Download link).
– Lincity
Jan 23 '11 at 13:51
2
Try opening.cdr
files with Inkscape.
– Vikrant Chaudhary
May 28 '12 at 12:40
1
it opened in LibreOffice Draw 4.0.3 :)
– user167139
Jun 14 '13 at 9:22
See also unix.stackexchange.com/questions/98315/…
– Nikos Alexandris
Sep 12 '14 at 18:36
You should try sk1 (Download link).
– Lincity
Jan 23 '11 at 13:51
You should try sk1 (Download link).
– Lincity
Jan 23 '11 at 13:51
2
2
Try opening
.cdr
files with Inkscape.– Vikrant Chaudhary
May 28 '12 at 12:40
Try opening
.cdr
files with Inkscape.– Vikrant Chaudhary
May 28 '12 at 12:40
1
1
it opened in LibreOffice Draw 4.0.3 :)
– user167139
Jun 14 '13 at 9:22
it opened in LibreOffice Draw 4.0.3 :)
– user167139
Jun 14 '13 at 9:22
See also unix.stackexchange.com/questions/98315/…
– Nikos Alexandris
Sep 12 '14 at 18:36
See also unix.stackexchange.com/questions/98315/…
– Nikos Alexandris
Sep 12 '14 at 18:36
add a comment |
3 Answers
3
active
oldest
votes
up vote
6
down vote
Another option is to try imagemagick convert utility,Imagemagic can be easily installed using software center or synaptic.
Since the document is scanned it should be a bitmap which imagemagick can handle, only the version of the .cdr would be a concern, you did not mention the version of the cdr file so you may just try imagemagick, at your terminal in the directory where the .cdr file is located, run the convert utility like this;
convert image.cdr image.png
this will convert the .cdr image called image.cdr to a .png image called image.png file that you can easily use, probably vectorize by tracing in inkscape if you wish.
See the imagemagic documentation on the convert utility if more control over the output is needed. hope the output is satisfactory.
add a comment |
up vote
0
down vote
Very simple and fast solution .cdr files could be open in libre office draw (actually it is default) Libre office draw has perfect save as for example to .png Than GIMP. Enjoy
add a comment |
up vote
-1
down vote
Source.
In order to work with CDR images you need to install some delegates
for ImageMagick. In order to convert CDR files you need to install
uniconvertor
for CDR delegate:
sudo apt-get install python-uniconvertor
List of all delegates:
convert -list delegate
By default it outputs:
cdr => "uniconvertor" "%i" "%o.svg"; mv "%o.svg" "%o"
Then run:
convert image.cdr -flatten -thumbnail '512x512' image.png
Or with zoom cropping:
convert image.cdr -flatten -thumbnail '512x512^' -gravity center -crop 512x512+0+0 +repage image.png
I convert to .png here, but you may choose your own output format.
add a comment |
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
6
down vote
Another option is to try imagemagick convert utility,Imagemagic can be easily installed using software center or synaptic.
Since the document is scanned it should be a bitmap which imagemagick can handle, only the version of the .cdr would be a concern, you did not mention the version of the cdr file so you may just try imagemagick, at your terminal in the directory where the .cdr file is located, run the convert utility like this;
convert image.cdr image.png
this will convert the .cdr image called image.cdr to a .png image called image.png file that you can easily use, probably vectorize by tracing in inkscape if you wish.
See the imagemagic documentation on the convert utility if more control over the output is needed. hope the output is satisfactory.
add a comment |
up vote
6
down vote
Another option is to try imagemagick convert utility,Imagemagic can be easily installed using software center or synaptic.
Since the document is scanned it should be a bitmap which imagemagick can handle, only the version of the .cdr would be a concern, you did not mention the version of the cdr file so you may just try imagemagick, at your terminal in the directory where the .cdr file is located, run the convert utility like this;
convert image.cdr image.png
this will convert the .cdr image called image.cdr to a .png image called image.png file that you can easily use, probably vectorize by tracing in inkscape if you wish.
See the imagemagic documentation on the convert utility if more control over the output is needed. hope the output is satisfactory.
add a comment |
up vote
6
down vote
up vote
6
down vote
Another option is to try imagemagick convert utility,Imagemagic can be easily installed using software center or synaptic.
Since the document is scanned it should be a bitmap which imagemagick can handle, only the version of the .cdr would be a concern, you did not mention the version of the cdr file so you may just try imagemagick, at your terminal in the directory where the .cdr file is located, run the convert utility like this;
convert image.cdr image.png
this will convert the .cdr image called image.cdr to a .png image called image.png file that you can easily use, probably vectorize by tracing in inkscape if you wish.
See the imagemagic documentation on the convert utility if more control over the output is needed. hope the output is satisfactory.
Another option is to try imagemagick convert utility,Imagemagic can be easily installed using software center or synaptic.
Since the document is scanned it should be a bitmap which imagemagick can handle, only the version of the .cdr would be a concern, you did not mention the version of the cdr file so you may just try imagemagick, at your terminal in the directory where the .cdr file is located, run the convert utility like this;
convert image.cdr image.png
this will convert the .cdr image called image.cdr to a .png image called image.png file that you can easily use, probably vectorize by tracing in inkscape if you wish.
See the imagemagic documentation on the convert utility if more control over the output is needed. hope the output is satisfactory.
answered Mar 25 '11 at 16:03
Sabacon
25.2k42839
25.2k42839
add a comment |
add a comment |
up vote
0
down vote
Very simple and fast solution .cdr files could be open in libre office draw (actually it is default) Libre office draw has perfect save as for example to .png Than GIMP. Enjoy
add a comment |
up vote
0
down vote
Very simple and fast solution .cdr files could be open in libre office draw (actually it is default) Libre office draw has perfect save as for example to .png Than GIMP. Enjoy
add a comment |
up vote
0
down vote
up vote
0
down vote
Very simple and fast solution .cdr files could be open in libre office draw (actually it is default) Libre office draw has perfect save as for example to .png Than GIMP. Enjoy
Very simple and fast solution .cdr files could be open in libre office draw (actually it is default) Libre office draw has perfect save as for example to .png Than GIMP. Enjoy
answered Nov 26 at 15:49
user897133
1
1
add a comment |
add a comment |
up vote
-1
down vote
Source.
In order to work with CDR images you need to install some delegates
for ImageMagick. In order to convert CDR files you need to install
uniconvertor
for CDR delegate:
sudo apt-get install python-uniconvertor
List of all delegates:
convert -list delegate
By default it outputs:
cdr => "uniconvertor" "%i" "%o.svg"; mv "%o.svg" "%o"
Then run:
convert image.cdr -flatten -thumbnail '512x512' image.png
Or with zoom cropping:
convert image.cdr -flatten -thumbnail '512x512^' -gravity center -crop 512x512+0+0 +repage image.png
I convert to .png here, but you may choose your own output format.
add a comment |
up vote
-1
down vote
Source.
In order to work with CDR images you need to install some delegates
for ImageMagick. In order to convert CDR files you need to install
uniconvertor
for CDR delegate:
sudo apt-get install python-uniconvertor
List of all delegates:
convert -list delegate
By default it outputs:
cdr => "uniconvertor" "%i" "%o.svg"; mv "%o.svg" "%o"
Then run:
convert image.cdr -flatten -thumbnail '512x512' image.png
Or with zoom cropping:
convert image.cdr -flatten -thumbnail '512x512^' -gravity center -crop 512x512+0+0 +repage image.png
I convert to .png here, but you may choose your own output format.
add a comment |
up vote
-1
down vote
up vote
-1
down vote
Source.
In order to work with CDR images you need to install some delegates
for ImageMagick. In order to convert CDR files you need to install
uniconvertor
for CDR delegate:
sudo apt-get install python-uniconvertor
List of all delegates:
convert -list delegate
By default it outputs:
cdr => "uniconvertor" "%i" "%o.svg"; mv "%o.svg" "%o"
Then run:
convert image.cdr -flatten -thumbnail '512x512' image.png
Or with zoom cropping:
convert image.cdr -flatten -thumbnail '512x512^' -gravity center -crop 512x512+0+0 +repage image.png
I convert to .png here, but you may choose your own output format.
Source.
In order to work with CDR images you need to install some delegates
for ImageMagick. In order to convert CDR files you need to install
uniconvertor
for CDR delegate:
sudo apt-get install python-uniconvertor
List of all delegates:
convert -list delegate
By default it outputs:
cdr => "uniconvertor" "%i" "%o.svg"; mv "%o.svg" "%o"
Then run:
convert image.cdr -flatten -thumbnail '512x512' image.png
Or with zoom cropping:
convert image.cdr -flatten -thumbnail '512x512^' -gravity center -crop 512x512+0+0 +repage image.png
I convert to .png here, but you may choose your own output format.
edited May 23 '17 at 12:39
Community♦
1
1
answered Apr 14 '15 at 14:41
Sasha MaximAL
917
917
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f22600%2fopen-or-convert-cdr-files%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You should try sk1 (Download link).
– Lincity
Jan 23 '11 at 13:51
2
Try opening
.cdr
files with Inkscape.– Vikrant Chaudhary
May 28 '12 at 12:40
1
it opened in LibreOffice Draw 4.0.3 :)
– user167139
Jun 14 '13 at 9:22
See also unix.stackexchange.com/questions/98315/…
– Nikos Alexandris
Sep 12 '14 at 18:36