ααααΌ Banner αα·ααΆαααΌααΆααααΈ File ααΎααα»αααΆα HD
ααΆαααα½αααααΈα Banner : @MrrBunThym
ααΆαααα½αααααΈα Banner : @MrrBunThym
This media is not supported in your browser
VIEW IN TELEGRAM
CorelDraw Export DXF PLT EPS ααααΎαααΏαααΆαα»αα
αααΎααα ααΆαααααΆααΈααΆααααΆαααα’ ααΌα
ααΆααααααα
α αΎα ααα αααααα ααααΆααΆαααΆα ααααααα ααΉαααααααΌααααααα
π1
StepAndRepeat V3.gms
53 KB
ααΆααααα
ααααΎααααΆααααΆαααααααα½α αα ααααααΆααα½αππππ
Forwarded from KHTMFile πΎ
This media is not supported in your browser
VIEW IN TELEGRAM
ααααΆααααααααΎαα @freeonekh
Forwarded from KHTMFile πΎ
This media is not supported in your browser
VIEW IN TELEGRAM
ααΆαααααααααα ααααααΎααΆαααΆα αααα½ααααααΆαα
αααΎααααα»αααααααα½απ¨π§βπ»βοΈ
Forwarded from ααα»α ααΈα
Please open Telegram to view this post
VIEW IN TELEGRAM
β€1
This media is not supported in your browser
VIEW IN TELEGRAM
ααααααΌα αααα»ααα·α αα File Bitmapα ααΌααααα»α Corelraw ααΏαααΆαα ααααΌαααΆαααΆααααααα ααΆαααααΌαααΈααα
β€1
Sub LineBitmap()
Dim s As shape
Dim centerline As shape
Dim outline As shape
Dim sr As shapeRange
Dim newSR As shapeRange
Dim groupedShape As shape
ActiveDocument.Unit = cdrMillimeter
' Check if there are any selected shapes
If ActiveSelection.Shapes.Count = 0 Then
MsgBox "No shapes selected!", vbExclamation
Exit Sub
End If
' Get the selected shapes
Set sr = ActiveSelectionRange
' Ungroup if it's a group
If sr.Count = 1 And sr.FirstShape.Type = cdrGroupShape Then
Set sr = sr.FirstShape.UngroupEx
End If
' Create a new shape range
Set newSR = New shapeRange
' Loop to create outline and centerline
For Each s In sr.Shapes
If s.Type = cdrBitmapShape Then
' Create outline
Set outline = s.CreateBoundary(0.1, False, False)
If Not outline Is Nothing Then
With outline.outline
.Color.RGBAssign 255, 0, 0
.Width = 0.2
End With
newSR.Add outline
End If
' Create centerline
On Error Resume Next
Set centerline = s.Trace(cdrTraceCenterline)
On Error GoTo 0
If Not centerline Is Nothing Then
With centerline.outline
.Color.RGBAssign 0, 0, 255
.Width = 0.2
End With
newSR.Add centerline
End If
End If
Next s
' Check if anything was created
If newSR.Count = 0 Then
MsgBox "No outline or centerline created!", vbExclamation
Exit Sub
End If
' Group all new shapes
Set groupedShape = newSR.Group
' ' Bring the grouped shape to front
' groupedShape.ZOrder cdrBringToFront
' MsgBox "Outline and centerline created and brought to front successfully!", vbInformation
End Sub