ش | ی | د | س | چ | پ | ج |
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
پست زیر درباره مواردی که می توان روی Image انجام داد مثل تغییر سایز ( Scale ) یا Rotation و Resolusion
ImageProcess :
مدیریت زنجیره ی Filter . آبجکت ImageProcess می تواند با استفاده از WIA.ImageProcess ساخته شود.
ImageProcess.FilterInfos Property :
مجموعه ای از تمام فیلترهای موجود را فراخوانی میکند . هر عکسی شامل یکسری داده است مثل ارتفاع ، رزلوشن که اینها در زنجیره فیلتر جمع آوری یا Collect شده اند. شما به اینها دسترسی پیدا می کنید و هر کدام که ReadOnly نباشد می توانید تغییر و ذخیره کنید.
برای لود یک فایل یا ذخیره از آبجکت ImageFile استفاده میشود و برای ساختش از عبارت WIA.ImageFile داخل CreateObject و تنظیم آن به یک Variable استفاده میشود یا می توانید از رفرنس هایی که در Vba وجود دارد تیک آنرا بزنید و دیگر از CreateObject استفاده کنید.
Set Img=CreateObject("WIA.ImageFile")
Img.LoadFile(path & filename)
Method : LoadFile , SaveFile
آبجکت ImageFile یک ظرف است که Image هایی را که به کامپیوتر ارسال می کنید در آن نگهداری میشود و دارای دو متد بالاست و پراپرتی هایی از جمله Width و Height و ....
آبجکت ImageProcess حاوی FilterInfos مجموعه ای از تمام فیلترهای موجود , Filters مجموعه فیلترهایی که باید به یک ImageFile اعمال شود .و متد Apply برای اقدام و انجام.
پس با توجه به یادداشت بالا می بایست از Add استفاده کنیم برای اضافه کردن FilterInfos به مجموعه Filters.
Set IP=CreateObject("WIA.ImageProcess")
'Assign Filters
'Appends or inserts a new Filter of the 'specified FilterID into a Filters collection.
'Method Add ( اضافه یا درج فیلتر جدید داخل مجموعه فیلتر)
IP.Filters.Add IP.FilterInfos("Scale").FilterID
'Retrieves the FilterID (FilterInfo) for this filter.
IP.Filters(1).Properties("MaximumWidth")=
IP.Filters(1).Properties("MaximumHeigth")=
'Filter APPLY On Inage
Set Img=IP.Apply(Img)
Img.SaveFile(.....)
.
یک یا چند کادر گفتگو را نمایش می دهد که به کاربر امکان می دهد تصویری از یک دستگاه سخت افزاری را بدست آورد
شامل تمام روشهایی است که یک رابط کاربر را نمایش می دهد. کنترل CommonDialog یک کنترل در زمان اجرا نامرئی است که می توانید با استفاده از "WIA.CommonDialog" به عنوان ProgID در فراخوانی به CreatObject یا با رها کردن یک شی CommonDialog روی یک فرم ایجاد کنید.
Methods
The CommonDialog object has these methods.
TABLE 1 Method Description ShowAcquireImage Displays one or more dialog boxes that enable the user to acquire an image from a hardware device. ShowAcquisitionWizard Starts the Scanner and Camera Wizard. ShowDeviceProperties Displays the Properties dialog box for the specified Device. ShowItemProperties Displays the Properties dialog box for the specified Item. ShowPhotoPrintingWizard Starts the Photo Printing Wizard with the absolute path of a specific file or Vector of absolute paths to files. ShowSelectDevice Displays a dialog box that enables the user to select a hardware device for image acquisition. ShowSelectItems Displays a dialog box that enables the user to select an Item for transfer from a hardware device for image acquisition. ShowTransfer Displays a Progress dialog box while transferring the specified Item to the local computer.
| The Abort button was selected. |
| The Cancel button was selected. |
| The Continue button was selected. |
| The Ignore button was selected. |
| The No button was selected. |
| The OK button was selected. |
| The Retry button was selected. |
| The Try Again button was selected. |
| The Yes button was selected. |
SendDlgItemMessageA
SetDlgItemTextA