Ⅰ Photoshop修改圖片能不能保留圖片的原屬性
你的圖片是什麼格式的,先看好。在你保存時保存你的圖片格式就行了。不要直接保存。不然是psd格式ps的標准格式。它默認的。
Ⅱ 如何在WORD中的圖片中更換圖片
在WORD中的圖片中更換圖片具體步驟:
1、此處昌吵桐以Word 2010來進行演示。請打開Word 2010,插入一張圖片,並進行大小和位置的編輯。
Ⅲ 在VB中如何更改picturebox中圖片的尺寸,並保存更改後的圖片
VB6.0中可使用PaintPicture 方法在 Form, PictureBox 或 Printer 上繪制圖形文件時設置參數更改圖亂慎片的尺寸。使用SavePicture 語句,從對象或控制項(如果有一個與其相關)的 Picture 或 Image 屬性中將圖形保存到文件中。
PaintPicture 方法,用以在 Form, PictureBox 或 Printer
上嘩改敬繪制圖形文件(.bmp、.wmf、.emf、.cur、.ico或 .dib)的內容。不支持命名參數。語法
代碼實例:
Private Sub Command1_Click()
Picture2.PaintPicture Picture1.Picture, 0, 0, 4000, 3200
End Sub
Private Sub Command2_Click()
SavePicture Picture2.Image, "D:Pic.bmp"
End Sub
Private Sub Form_Load()
Picture2.AutoRedraw = True
Picture1.Picture = LoadPicture("D:p1.jpg")
End Sub