![]() |
|
#1
|
|||
|
|||
![]()
Hi,
i want to convert each object-group in document (*.cdr) into a bitmap with only one click. How does it work? Can you help me? thomas |
#2
|
||||
|
||||
![]()
Draw will only convert your selection, if you want to convert the entire page and have each shape your own bitmap you need to write a little code. The code below will convert each shape on the active page to a 300 dpi RGB bitmap. Change the settings to fit your needs.
Code:
Sub ConvertShapesToBitmap() Dim s As Shape For Each s In ActivePage.Shapes If s.Type <> cdrBitmapShape Then s.ConvertToBitmap cdrRGBColorImage, False, False, False, 300, cdrNormalAntiAliasing, False End If Next s End Sub -Shelby |
#3
|
|||
|
|||
![]()
Hello Shelby,
thank you very much for your answer and the code. That is greatly! I am very surprised, what one (you) can automate with so few text lines. Thank you once again!! Best greetings from Germany Thomas |
![]() |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Convert deep powercliped RGB bitmap to CMYK Mode | vindaa | CorelDRAW/Corel DESIGNER VBA | 1 | 20-05-2007 11:00 |
How to convert transparencies to bitmap in nested powerclip | designhouse | CorelDRAW/Corel DESIGNER VBA | 2 | 29-04-2007 03:07 |
CD11 Convert to Bitmap -> CMYK to Gray scale problem | xenio | General | 7 | 24-07-2005 21:46 |
how can we convert all lenses in document to cmyk bitmap? | olympiatr | CorelDRAW/Corel DESIGNER VBA | 2 | 27-05-2005 04:11 |
How to convert my document colors to grayscale | Alex | FAQ | 1 | 03-05-2005 14:55 |