Resimleri Yönetme

Aspose.Cells, geliştiricilerin çalışma zamanında e-tablolara resim eklemesine olanak tanır. Ayrıca, bu resimlerin konumu, sonraki bölümlerde daha ayrıntılı olarak tartışılan çalışma zamanında kontrol edilebilir.

Bu makale, resimlerin nasıl ekleneceğini ve belirli hücrelerin içeriğini gösteren bir resmin nasıl ekleneceğini açıklar.

Resim Ekleme

Bir e-tabloya resim eklemek çok kolaydır. Yalnızca birkaç satır kod alır: basitçeEklemek yöntemiresimler koleksiyon (kapsüllenmişÇalışma kağıdı nesne). buEklemekyöntem aşağıdaki parametreleri alır:

  • Sol üst sıra dizini, sol üst satırın dizini.
  • Sol üst sütun dizini, sol üst sütunun dizini.
  • Resim dosyası adı, resim dosyasının adı, yol ile tamamlayın.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
// Create directory if it is not already present.
bool IsExists = System.IO.Directory.Exists(dataDir);
if (!IsExists)
System.IO.Directory.CreateDirectory(dataDir);
// Instantiating a Workbook object
Workbook workbook = new Workbook();
// Adding a new worksheet to the Workbook object
int sheetIndex = workbook.Worksheets.Add();
// Obtaining the reference of the newly added worksheet by passing its sheet index
Worksheet worksheet = workbook.Worksheets[sheetIndex];
// Adding a picture at the location of a cell whose row and column indices
// Are 5 in the worksheet. It is "F6" cell
worksheet.Pictures.Add(5, 5, dataDir + "logo.jpg");
// Saving the Excel file
workbook.Save(dataDir + "output.xls");

Resimleri Konumlandırma

Aspose.Cells’i kullanarak resimlerin konumunu kontrol etmenin iki olası yolu vardır:

  • Orantılı konumlandırma: sıra yüksekliği ve genişliği ile orantılı bir konum tanımlayın.
  • Mutlak konumlandırma: sayfada görüntünün ekleneceği tam konumu tanımlayın, örneğin hücrenin kenarının 20 piksel solunda ve 20 piksel altında.

Orantılı Konumlandırma

Geliştiriciler, resimleri satır yüksekliği ve sütun genişliğiyle orantılı olarak konumlandırabilir.ÜstDeltaX veÜstDeltaY özellikleriAspose.Cells.Drawing.Picture nesne. AResim nesne şu adresten alınabilir:resimlerresim dizinini geçirerek koleksiyon. Bu örnek, F6 hücresine bir resim yerleştirir.

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
// Create directory if it is not already present.
bool IsExists = System.IO.Directory.Exists(dataDir);
if (!IsExists)
System.IO.Directory.CreateDirectory(dataDir);
// Instantiating a Workbook object
Workbook workbook = new Workbook();
// Adding a new worksheet to the Workbook object
int sheetIndex = workbook.Worksheets.Add();
// Obtaining the reference of the newly added worksheet by passing its sheet index
Worksheet worksheet = workbook.Worksheets[sheetIndex];
// Adding a picture at the location of a cell whose row and column indices
// Are 5 in the worksheet. It is "F6" cell
int pictureIndex = worksheet.Pictures.Add(5, 5, dataDir + "logo.jpg");
// Accessing the newly added picture
Aspose.Cells.Drawing.Picture picture = worksheet.Pictures[pictureIndex];
// Positioning the picture proportional to row height and colum width
picture.UpperDeltaX = 200;
picture.UpperDeltaY = 200;
// Saving the Excel file
workbook.Save(dataDir + "book1.out.xls");

Mutlak Konumlandırma

Geliştiriciler ayrıca resimleri kesinlikle kullanarak konumlandırabilir.Sol veTepe özellikleriResimnesne. Bu örnek, F6 hücresine soldan 60 piksel ve hücrenin üstünden 10 piksel uzaklıkta bir resim yerleştirir.

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
// Instantiating a Workbook object
Workbook workbook = new Workbook();
// Adding a new worksheet to the Workbook object
int sheetIndex = workbook.Worksheets.Add();
// Obtaining the reference of the newly added worksheet by passing its sheet index
Worksheet worksheet = workbook.Worksheets[sheetIndex];
// Adding a picture at the location of a cell whose row and column indices
// Are 5 in the worksheet. It is "F6" cell
int pictureIndex = worksheet.Pictures.Add(5, 5, dataDir + "logo.jpg");
// Accessing the newly added picture
Aspose.Cells.Drawing.Picture picture = worksheet.Pictures[pictureIndex];
// Absolute positioning of the picture in unit of pixels
picture.Left = 60;
picture.Top = 10;
// Saving the Excel file
workbook.Save(dataDir + "book1.out.xls");

Cell Referansına Göre Resim Ekleme

Aspose.Cells, bir çalışma sayfası hücresinin içeriğini bir görüntü şeklinde görüntülemenizi sağlar. Resmi, görüntülemek istediğiniz verileri içeren hücreye bağlayabilirsiniz. Hücre veya hücre aralığı grafik nesnesine bağlı olduğundan, o hücre veya hücre aralığındaki verilerde yaptığınız değişiklikler otomatik olarak grafik nesnesinde görünür.

çağırarak çalışma sayfasına bir resim ekleyin.Resim Ekle yöntemiŞekil Koleksiyonu koleksiyon (kapsüllenmişÇalışma kağıdı nesne). kullanarak hücre aralığını belirtin.formül özniteliğiResimnesne.

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
// Instantiate a new Workbook
Workbook workbook = new Workbook();
// Get the first worksheet's cells collection
Cells cells = workbook.Worksheets[0].Cells;
// Add string values to the cells
cells["A1"].PutValue("A1");
cells["C10"].PutValue("C10");
// Add a blank picture to the D1 cell
Picture pic = workbook.Worksheets[0].Shapes.AddPicture(0, 3, 10, 6, null);
// Specify the formula that refers to the source range of cells
pic.Formula = "A1:C10";
// Update the shapes selected value in the worksheet
workbook.Worksheets[0].Shapes.UpdateSelectedValue();
// Save the Excel file.
workbook.Save(dataDir + "output.out.xls");

ileri konular