2014年10月16日 星期四

[PDF]各種處理SmallPDF

http://smallpdf.com/compress-pdf

From: http://free.com.tw/smallpdf/

Smallpdf.com 線上 PDF 轉檔、合併、分割、壓縮工具,解決各種 PDF 疑難雜症
我特別喜歡一些無須下載、註冊,也不用安裝軟體,就能完成我手邊工作的線上工具,例如先前介紹的 ILoveFile 一個網站搞定文件、圖片、音樂三大轉檔,如果你還有印象,我還介紹過 Smallpdf 免費壓縮 PDF 文件,減少檔案大小的網路服務,而現在 Smallpdf 更進一步,提供一系列與 PDF 有關的線上工具,轉檔、合併、分割和壓縮一應俱全。

2014年10月2日 星期四

[PDF Crack]線上破解PDF



http://www.crackmypdf.com/




網站的使用方法十分之簡單呢!只要按下 "選擇檔案",選取你想破解的 pdf 後,勾上 "I agree to the terms of service below",再按下旁邊的 "Unlock" 就可以了。 



http://magaling88.blogspot.tw/2012/09/crackmypdf-pdf.html

2014年3月9日 星期日

2014年1月12日 星期日

[CAD]標上座標

http://jack60455867.pixnet.net/blog/post/28025076-%E5%9C%A8%E5%9C%96%E4%B8%8A%E6%A8%99%E4%B8%8A%E5%BA%A7%E6%A8%99(x,y)




;DE command will dimension the xy coords of the endpoint of any line
; or arc with leader, with text automatic and inserted as X 0.3426 , Y 6.4356

(defun c:de ()
     (setvar "cmdecho" 0)
     (command "osnap" "end")
     (setq p1 (getpoint "Select line near endpoint"))
     (setq p2 (getpoint p1 "Select cen of Leader"))
     (setq px (rtos (nth 0 p1 ) 2 4))
     (setq py (rtos (nth 1 p1 ) 2 4))
     (setq txt (strcat "x " px " , " "y " py))
     (command "dim1" "leader" p1 p2 "" txt)
     (setvar "cmdecho" 1)
)



用(附屬應用程式)中的(記事本)輸入上面的程式....再另存新檔,檔名是DE.LISP




執行 AutoCAD.....
開啟舊檔....
點選(工具)...(載入應用程式)....DE.LISP
在指令列輸入....DE





移動滑鼠......點選線的端點....便會出現X,Y座標