12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- Attribute VB_Name = "savePDFtoClip"
- #If VBA7 Then
- Private Declare PtrSafe Function vbadll Lib "lycpg64.cpg" (ByVal code As Long, ByVal x As Double) As Long
- #Else
- Private Declare Function vbadll Lib "lycpg32.cpg" (ByVal code As Long, ByVal x As Double) As Long
- #End If
- Sub CorelDRAW_CopyPDF()
- ret = vbadll(2, 0)
-
- End Sub
- Sub CorelDRAW_PastePDF()
- ret = vbadll(1, 0)
- End Sub
- Private Function GetTempFile(ByVal sExtension As String) As String
- GetTempFile = CorelScriptTools.GetTempFolder() & "CDR2AI" & "." & sExtension
- End Function
- Public Function CdrCopyToAI()
- On Error GoTo ErrorHandler
- sTempFilePDF = GetTempFile("pdf")
-
- With ActiveDocument.PDFSettings
- .PublishRange = 2
- .BitmapCompression = 1
- .JPEGQualityFactor = 2
- .EmbedFonts = True
- .EmbedBaseFonts = True
- .TrueTypeToType1 = True
- .SubsetFonts = False
- .SubsetPct = 80
- .CompressText = True
- .Encoding = 1
- .ColorResolution = 300
- .MonoResolution = 1200
- .GrayResolution = 300
- .Hyperlinks = True
- .Bookmarks = True
- .Thumbnails = True
- .Startup = 0
- .Overprints = True
- .Halftones = True
- .FountainSteps = 256
- .EPSAs = 0
- .pdfVersion = 6
- .ColorMode = 3
- .ColorProfile = 1
- .JP2QualityFactor = 2
- .TextExportMode = 0
- .PrintPermissions = 0
- .EditPermissions = 0
- .EncryptType = 1
- End With
-
- ActiveDocument.PublishToPDF sTempFilePDF
-
-
-
- cmd_line = "C:\TSP\pdf2clip.exe " & sTempFilePDF
- ret = Shell(cmd_line, vbHide)
-
- ErrorHandler:
- End Function
- Public Function AICopyToCdr()
- On Error GoTo ErrorHandler
- sTempFilePDF = GetTempFile("pdf")
-
- cmd_line = "C:\TSP\clip2pdf.exe " & sTempFilePDF
- Dim ret As Long
- ret = Shell(cmd_line, vbHide)
-
-
- Dim startTime As Variant
- startTime = Now
- Do While (Now - startTime) < TimeSerial(0, 0, 1)
- DoEvents
- Loop
- Dim impopt As StructImportOptions
- Set impopt = CreateStructImportOptions
- impopt.MaintainLayers = True
- Dim impflt As ImportFilter
- Set impflt = ActiveLayer.ImportEx(sTempFilePDF, cdrAI9, impopt)
- impflt.Finish
- ErrorHandler:
- End Function
|