forked from jmcnamara/rust_xlsxwriter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage.rs
1168 lines (1068 loc) · 40.1 KB
/
image.rs
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// image - A module for handling Excel image files.
//
// SPDX-License-Identifier: MIT OR Apache-2.0
//
// Copyright 2022-2023, John McNamara, [email protected]
#![warn(missing_docs)]
use std::collections::hash_map::DefaultHasher;
use std::fs::File;
use std::hash::{Hash, Hasher};
use std::io::BufReader;
use std::io::Read;
use std::path::Path;
use std::path::PathBuf;
use crate::drawing::{DrawingObject, DrawingType};
use crate::XlsxError;
#[derive(Clone, Debug)]
/// The `Image` struct is used to create an object to represent an image that
/// can be inserted into a worksheet.
///
/// ```rust
/// # // This code is available in examples/doc_image.rs
/// #
/// use rust_xlsxwriter::{Image, Workbook, XlsxError};
///
/// fn main() -> Result<(), XlsxError> {
/// // Create a new Excel file object.
/// let mut workbook = Workbook::new();
///
/// // Add a worksheet to the workbook.
/// let worksheet = workbook.add_worksheet();
///
/// // Create a new image object.
/// let image = Image::new("examples/rust_logo.png")?;
///
/// // Insert the image.
/// worksheet.insert_image(1, 2, &image)?;
///
/// // Save the file to disk.
/// workbook.save("image.xlsx")?;
///
/// Ok(())
/// }
/// ```
///
/// Output file:
///
/// <img src="https://rustxlsxwriter.github.io/images/image_intro.png">
///
pub struct Image {
height: f64,
width: f64,
width_dpi: f64,
height_dpi: f64,
scale_width: f64,
scale_height: f64,
has_default_dpi: bool,
pub(crate) x_offset: u32,
pub(crate) y_offset: u32,
pub(crate) image_type: XlsxImageType,
pub(crate) alt_text: String,
pub(crate) vml_name: String,
pub(crate) header_position: HeaderImagePosition,
pub(crate) object_movement: ObjectMovement,
pub(crate) is_header: bool,
pub(crate) decorative: bool,
pub(crate) hash: u64,
pub(crate) data: Vec<u8>,
pub(crate) drawing_type: DrawingType,
}
impl Image {
// -----------------------------------------------------------------------
// Public (and crate public) methods.
// -----------------------------------------------------------------------
/// Create a new Image object from an image file.
///
/// Create an Image object from a path to an image file. The image can then
/// be inserted into a worksheet.
///
/// The supported image formats are:
///
/// - PNG
/// - JPG
/// - GIF: The image can be an animated gif in more resent versions of
/// Excel.
/// - BMP: BMP images are only supported for backward compatibility. In
/// general it is best to avoid BMP images since they are not compressed.
/// If used, BMP images must be 24 bit, true color, bitmaps.
///
/// EMF and WMF file formats will be supported in an upcoming version of the
/// library.
///
/// **NOTE on SVG files**: Excel doesn't directly support SVG files in the
/// same way as other image file formats. It allows SVG to be inserted into
/// a worksheet but converts them to, and displays them as, PNG files. It
/// stores the original SVG image in the file so the original format can be
/// retrieved. This removes the file size and resolution advantage of using
/// SVG files. As such SVG files are not supported by `rust_xlsxwriter`
/// since a conversion to the PNG format would be required and that format
/// is already supported.
///
/// # Parameters
///
/// * `path` - The path of the image file to read e as a `&str` or as a
/// [`std::path`] `Path` or `PathBuf` instance.
///
/// # Errors
///
/// * [`XlsxError::UnknownImageType`] - Unknown image type. The supported
/// image formats are PNG, JPG, GIF and BMP.
/// * [`XlsxError::ImageDimensionError`] - Image has 0 width or height, or
/// the dimensions couldn't be read.
///
/// # Examples
///
/// The following example demonstrates creating a new Image object and
/// adding it to a worksheet.
///
/// ```
/// # // This code is available in examples/doc_image.rs
/// #
/// # use rust_xlsxwriter::{Image, Workbook, XlsxError};
/// #
/// # fn main() -> Result<(), XlsxError> {
/// # // Create a new Excel file object.
/// # let mut workbook = Workbook::new();
/// #
/// # // Add a worksheet to the workbook.
/// # let worksheet = workbook.add_worksheet();
/// #
/// // Create a new image object.
/// let image = Image::new("examples/rust_logo.png")?;
///
/// // Insert the image.
/// worksheet.insert_image(1, 2, &image)?;
/// #
/// # // Save the file to disk.
/// # workbook.save("image.xlsx")?;
/// #
/// # Ok(())
/// # }
/// ```
///
/// Output file:
///
/// <img src="https://rustxlsxwriter.github.io/images/image_intro.png">
///
pub fn new<P: AsRef<Path>>(path: P) -> Result<Image, XlsxError> {
let mut path_buf = PathBuf::new();
path_buf.push(path);
let vml_name = match path_buf.file_stem() {
Some(file_stem) => file_stem.to_string_lossy().to_string(),
None => "image".to_string(),
};
let file = File::open(path_buf)?;
let mut reader = BufReader::new(file);
let mut data = vec![];
reader.read_to_end(&mut data)?;
let mut image = Self::new_from_buffer(&data)?;
image.vml_name = vml_name;
Ok(image)
}
///
/// Create an Image object from a u8 buffer. The image can then be inserted
/// into a worksheet.
///
/// This method is similar to [`new()`](Image::new), see above, except the
/// image data can be in a buffer instead of a file path.
///
/// # Parameters
///
/// * `buffer` - The image data as a u8 array or vector.
///
/// # Errors
///
/// * [`XlsxError::UnknownImageType`] - Unknown image type. The supported
/// image formats are PNG, JPG, GIF and BMP.
/// * [`XlsxError::ImageDimensionError`] - Image has 0 width or height, or
/// the dimensions couldn't be read.
///
/// # Examples
///
/// This example shows how to create an image object from a u8 buffer.
///
/// ```
/// # // This code is available in examples/doc_image_new_from_buffer.rs
/// #
/// # use rust_xlsxwriter::{Image, Workbook, XlsxError};
/// #
/// # fn main() -> Result<(), XlsxError> {
/// # // Create a new Excel file object.
/// # let mut workbook = Workbook::new();
/// #
/// # // Add a worksheet to the workbook.
/// # let worksheet = workbook.add_worksheet();
/// #
/// # // Create a new image object.
/// # let buf: [u8; 200] = [
/// # 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44,
/// # 0x52, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20, 0x08, 0x02, 0x00, 0x00, 0x00, 0xfc,
/// # 0x18, 0xed, 0xa3, 0x00, 0x00, 0x00, 0x01, 0x73, 0x52, 0x47, 0x42, 0x00, 0xae, 0xce, 0x1c,
/// # 0xe9, 0x00, 0x00, 0x00, 0x04, 0x67, 0x41, 0x4d, 0x41, 0x00, 0x00, 0xb1, 0x8f, 0x0b, 0xfc,
/// # 0x61, 0x05, 0x00, 0x00, 0x00, 0x20, 0x63, 0x48, 0x52, 0x4d, 0x00, 0x00, 0x7a, 0x26, 0x00,
/// # 0x00, 0x80, 0x84, 0x00, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x80, 0xe8, 0x00, 0x00, 0x75, 0x30,
/// # 0x00, 0x00, 0xea, 0x60, 0x00, 0x00, 0x3a, 0x98, 0x00, 0x00, 0x17, 0x70, 0x9c, 0xba, 0x51,
/// # 0x3c, 0x00, 0x00, 0x00, 0x46, 0x49, 0x44, 0x41, 0x54, 0x48, 0x4b, 0x63, 0xfc, 0xcf, 0x40,
/// # 0x63, 0x00, 0xb4, 0x80, 0xa6, 0x88, 0xb6, 0xa6, 0x83, 0x82, 0x87, 0xa6, 0xce, 0x1f, 0xb5,
/// # 0x80, 0x98, 0xe0, 0x1d, 0x8d, 0x03, 0x82, 0xa1, 0x34, 0x1a, 0x44, 0xa3, 0x41, 0x44, 0x30,
/// # 0x04, 0x08, 0x2a, 0x18, 0x4d, 0x45, 0xa3, 0x41, 0x44, 0x30, 0x04, 0x08, 0x2a, 0x18, 0x4d,
/// # 0x45, 0xa3, 0x41, 0x44, 0x30, 0x04, 0x08, 0x2a, 0x18, 0x4d, 0x45, 0x03, 0x1f, 0x44, 0x00,
/// # 0xaa, 0x35, 0xdd, 0x4e, 0xe6, 0xd5, 0xa1, 0x22, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e,
/// # 0x44, 0xae, 0x42, 0x60, 0x82,
/// # ];
/// #
/// // Create a new image object from a u8 buffer.
/// let image = Image::new_from_buffer(&buf)?;
///
/// // Insert the image.
/// worksheet.insert_image(1, 2, &image)?;
///
/// # // Save the file to disk.
/// # workbook.save("image.xlsx")?;
/// #
/// # Ok(())
/// # }
/// ```
///
/// Output file:
///
/// <img
/// src="https://rustxlsxwriter.github.io/images/image_new_from_buffer.png">
///
pub fn new_from_buffer(buffer: &[u8]) -> Result<Image, XlsxError> {
let mut image = Image {
height: 0.0,
width: 0.0,
width_dpi: 96.0,
height_dpi: 96.0,
scale_width: 1.0,
scale_height: 1.0,
x_offset: 0,
y_offset: 0,
has_default_dpi: true,
image_type: XlsxImageType::Unknown,
alt_text: String::new(),
vml_name: "image".to_string(),
header_position: HeaderImagePosition::Center,
object_movement: ObjectMovement::MoveButDontSizeWithCells,
is_header: true,
decorative: false,
hash: 0,
data: buffer.to_vec(),
drawing_type: DrawingType::Image,
};
Self::process_image(&mut image)?;
Ok(image)
}
/// Set the height scale for the image.
///
/// Set the height scale for the image relative to 1.0/100%. As with Excel
/// this sets a logical scale for the image, it doesn't rescale the actual
/// image. This allows the user to get back the original unscaled image.
///
/// **Note for macOS Excel users**: the scale shown on Excel for macOS is
/// different from the scale on Windows. This is an Excel issue and not a
/// `rust_xlsxwriter` issue.
///
/// # Parameters
///
/// * `scale` - The scale ratio.
///
/// # Examples
///
/// This example shows how to create an image object and use it to insert
/// the image into a worksheet. The image in this case is scaled.
///
/// ```
/// # // This code is available in examples/doc_image_set_scale_width.rs
/// #
/// # use rust_xlsxwriter::{Image, Workbook, XlsxError};
/// #
/// # fn main() -> Result<(), XlsxError> {
/// # // Create a new Excel file object.
/// # let mut workbook = Workbook::new();
/// #
/// # // Add a worksheet to the workbook.
/// # let worksheet = workbook.add_worksheet();
/// #
/// // Create a new image object.
/// let mut image = Image::new("examples/rust_logo.png")?;
///
/// // Set the image scale.
/// image.set_scale_height(0.75);
/// image.set_scale_width(0.75);
///
/// // Insert the image.
/// worksheet.insert_image(1, 2, &image)?;
/// #
/// # // Save the file to disk.
/// # workbook.save("image.xlsx")?;
/// #
/// # Ok(())
/// # }
/// ```
///
/// Output file:
///
/// <img
/// src="https://rustxlsxwriter.github.io/images/image_set_scale_width.png">
///
pub fn set_scale_height(&mut self, scale: f64) -> &mut Image {
if scale <= 0.0 {
return self;
}
self.scale_height = scale;
self
}
/// Set the width scale for the image.
///
/// Set the width scale for the image relative to 1.0/100%. See the
/// [`set_scale_height()`](Image::set_scale_height) method for details.
///
/// # Parameters
///
/// * `scale` - The scale ratio.
///
pub fn set_scale_width(&mut self, scale: f64) -> &mut Image {
if scale <= 0.0 {
return self;
}
self.scale_width = scale;
self
}
/// Set the width and height scale to achieve a specific size.
///
/// Calculate and set the horizontal and vertical scales for an image in
/// order to display it at a fixed width and height in a worksheet. This is
/// most commonly used to scale an image so that it fits within a cell or a
/// specific region in a worksheet. The scaling calculation takes into
/// account the DPI of the image in the same way that Excel does.
///
/// There are two options, which are controlled by the `keep_aspect_ratio`
/// parameter. The image can be scaled vertically and horizontally to give
/// the specified with and height or the aspect ratio of the image can be
/// maintained so that the image is scaled to the lesser of the horizontal
/// or vertical sizes. See the example below.
///
/// See also the
/// [`worksheet.insert_image_fit_to_cell()`](crate::Worksheet::insert_image_fit_to_cell)
/// method.
///
/// # Parameters
///
/// * `width` - The target width in pixels to scale the image to.
/// * `height` - The target height in pixels to scale the image to.
/// * `keep_aspect_ratio` - Boolean value to maintain the aspect ratio of
/// the image if `true` or scale independently in the horizontal and
/// vertical directions if `false`.
///
/// Note: the `width` and `height` can mainly be considered as pixel sizes.
/// However, f64 values are allowed for cases where a fractional size is
/// required
///
/// # Examples
///
/// An example of scaling images to a fixed width and height. See also the
/// `worksheet.insert_image_fit_to_cell()` method.
///
/// ```
/// # // This code is available in examples/doc_image_set_scale_to_size.rs
/// #
/// # use rust_xlsxwriter::{Format, FormatAlign, Image, Workbook, XlsxError};
/// #
/// # fn main() -> Result<(), XlsxError> {
/// # // Create a new Excel file object.
/// # let mut workbook = Workbook::new();
/// #
/// # let center = Format::new().set_align(FormatAlign::VerticalCenter);
/// #
/// # // Add a worksheet to the workbook.
/// # let worksheet = workbook.add_worksheet();
/// #
/// // Widen the first column to make the text clearer.
/// worksheet.set_column_width(0, 30)?;
///
/// // Set larger cells to accommodate the images.
/// worksheet.set_column_width_pixels(1, 200)?;
/// worksheet.set_row_height_pixels(0, 140)?;
/// worksheet.set_row_height_pixels(2, 140)?;
/// worksheet.set_row_height_pixels(4, 140)?;
///
/// // Create a new image object.
/// let mut image = Image::new("examples/rust_logo.png")?;
///
/// // Insert the image as standard, without scaling.
/// worksheet.write_with_format(0, 0, "Unscaled image inserted into cell:", ¢er)?;
/// worksheet.insert_image(0, 1, &image)?;
///
/// // Scale the image to fit the entire cell.
/// image.set_scale_to_size(200, 140, false);
/// worksheet.write_with_format(2, 0, "Image scaled to fit cell:", ¢er)?;
/// worksheet.insert_image(2, 1, &image)?;
///
/// // Scale the image to fit the defined size region while maintaining the
/// // aspect ratio. In this case it is scaled to the smaller of the width or
/// // height scales.
/// image.set_scale_to_size(200, 140, true);
/// worksheet.write_with_format(4, 0, "Image scaled with a fixed aspect ratio:", ¢er)?;
/// worksheet.insert_image(4, 1, &image)?;
/// #
/// # // Save the file to disk.
/// # workbook.save("image.xlsx")?;
/// #
/// # Ok(())
/// # }
/// ```
///
/// Output file:
///
/// <img src="https://rustxlsxwriter.github.io/images/image_set_scale_to_size.png">
///
///
pub fn set_scale_to_size<T>(
&mut self,
width: T,
height: T,
keep_aspect_ratio: bool,
) -> &mut Image
where
T: Into<f64> + Copy,
{
if width.into() == 0.0 || height.into() == 0.0 {
return self;
}
let mut scale_width = (width.into() / self.width()) * (self.width_dpi() / 96.0);
let mut scale_height = (height.into() / self.height()) * (self.height_dpi() / 96.0);
if keep_aspect_ratio {
if scale_width < scale_height {
scale_height = scale_width;
} else {
scale_width = scale_height;
}
}
self.set_scale_width(scale_width);
self.set_scale_height(scale_height);
self
}
/// Set the alt text for the image.
///
/// Set the alt text for the image to help accessibility. The alt text is
/// used with screen readers to help people with visual disabilities.
///
/// See the following Microsoft documentation on [Everything you need to
/// know to write effective alt
/// text](https://support.microsoft.com/en-us/office/everything-you-need-to-know-to-write-effective-alt-text-df98f884-ca3d-456c-807b-1a1fa82f5dc2).
///
/// # Parameters
///
/// * `alt_text` - The alt text string to add to the image.
///
/// # Examples
///
/// This example shows how to create an image object and set the alternative
/// text to help accessibility.
///
///
///
/// ```
/// # // This code is available in examples/doc_image_set_alt_text.rs
/// #
/// # use rust_xlsxwriter::{Image, Workbook, XlsxError};
/// #
/// # fn main() -> Result<(), XlsxError> {
/// # // Create a new Excel file object.
/// # let mut workbook = Workbook::new();
/// #
/// # // Add a worksheet to the workbook.
/// # let worksheet = workbook.add_worksheet();
/// #
/// // Create a new image object.
/// let mut image = Image::new("examples/rust_logo.png")?;
///
/// // Set the alternative text.
/// image.set_alt_text("A circular logo with gear teeth on the outside \
/// and a large letter R on the inside.\n\n\
/// The logo of the Rust programming language.");
///
/// # // Insert the image.
/// # worksheet.insert_image(1, 2, &image)?;
/// #
/// # // Save the file to disk.
/// # workbook.save("image.xlsx")?;
/// #
/// # Ok(())
/// # }
/// ```
///
/// Alt text dialog in Excel:
///
/// <img
/// src="https://rustxlsxwriter.github.io/images/image_set_alt_text.png">
///
pub fn set_alt_text(&mut self, alt_text: impl Into<String>) -> &mut Image {
self.alt_text = alt_text.into();
self
}
/// Mark an image as decorative.
///
/// Not all images need an alt text description. Some images may contain
/// little or no useful visual information, for example a simple shape with
/// color used to divide sections. Such images can be marked as "decorative"
/// so that screen readers can inform the users that they don't contain
/// important information.
///
/// # Parameters
///
/// * `enable` - Turn the property on/off. It is off by default.
///
/// # Examples
///
/// This example shows how to create an image object and set the decorative
/// property to indicate the it doesn't contain useful visual information.
/// This is used to improve the accessibility of visual elements.
///
/// ```
/// # // This code is available in examples/doc_image_set_decorative.rs
/// #
/// # use rust_xlsxwriter::{Image, Workbook, XlsxError};
/// #
/// # fn main() -> Result<(), XlsxError> {
/// # // Create a new Excel file object.
/// # let mut workbook = Workbook::new();
/// #
/// # // Add a worksheet to the workbook.
/// # let worksheet = workbook.add_worksheet();
/// #
/// # // Create a new image object.
/// let mut image = Image::new("examples/rust_logo.png")?;
///
/// image.set_decorative(true);
///
/// # // Insert the image.
/// # worksheet.insert_image(1, 2, &image)?;
/// #
/// # // Save the file to disk.
/// # workbook.save("image.xlsx")?;
/// #
/// # Ok(())
/// # }
/// ```
///
/// Alt text dialog in Excel:
///
/// <img
/// src="https://rustxlsxwriter.github.io/images/image_set_decorative.png">
///
pub fn set_decorative(&mut self, enable: bool) -> &mut Image {
self.decorative = enable;
self
}
/// Set the object movement options for a worksheet image.
///
/// Set the option to define how an image will behave in Excel if the cells
/// under the image are moved, deleted, or have their size changed. In Excel
/// the options are:
///
/// 1. Move and size with cells.
/// 2. Move but don't size with cells.
/// 3. Don't move or size with cells.
///
/// <img src="https://rustxlsxwriter.github.io/images/object_movement.png">
///
/// These values are defined in the [`ObjectMovement`] enum.
///
/// The [`ObjectMovement`] enum also provides an additional option to
/// "Move and size with cells - after the image is inserted" to allow images
/// to be hidden in rows or columns. In Excel this equates to option 1 above
/// but the internal image position calculations are handled differently.
///
/// # Parameters
///
/// * `option` - An image/object positioning behavior defined by the
/// [`ObjectMovement`] enum.
///
/// # Examples
///
/// This example shows how to create an image object and set the option to
/// control how it behaves when the cells underneath it are changed.
///
/// ```
/// # // This code is available in examples/doc_image_set_object_movement.rs
/// #
/// # use rust_xlsxwriter::{Image, Workbook, XlsxError, ObjectMovement};
/// #
/// # fn main() -> Result<(), XlsxError> {
/// # // Create a new Excel file object.
/// # let mut workbook = Workbook::new();
/// #
/// # // Add a worksheet to the workbook.
/// # let worksheet = workbook.add_worksheet();
/// #
/// // Create a new image object.
/// let mut image = Image::new("examples/rust_logo.png")?;
///
/// // Set the object movement/positioning options.
/// image.set_object_movement(ObjectMovement::MoveButDontSizeWithCells);
///
/// // Insert the image.
/// worksheet.insert_image(1, 2, &image)?;
///
/// # // Save the file to disk.
/// # workbook.save("image.xlsx")?;
/// #
/// # Ok(())
/// # }
/// ```
///
/// Output file:
///
/// <img
/// src="https://rustxlsxwriter.github.io/images/image_set_object_movement.png">
///
pub fn set_object_movement(&mut self, option: ObjectMovement) -> &mut Image {
self.object_movement = option;
self
}
/// Get the width of the image used for the size calculations in Excel.
///
/// # Examples
///
/// This example shows how to get some of the properties of an Image that
/// will be used in an Excel worksheet.
///
/// ```
/// # // This code is available in examples/doc_image_dimensions.rs
/// #
/// # use rust_xlsxwriter::{Image, XlsxError};
/// #
/// # fn main() -> Result<(), XlsxError> {
/// let image = Image::new("examples/rust_logo.png")?;
///
/// assert_eq!(106.0, image.width());
/// assert_eq!(106.0, image.height());
/// assert_eq!(96.0, image.width_dpi());
/// assert_eq!(96.0, image.height_dpi());
/// #
/// # Ok(())
/// # }
/// ```
pub fn width(&self) -> f64 {
self.width
}
/// Get the height of the image used for the size calculations in Excel. See
/// the example above.
///
pub fn height(&self) -> f64 {
self.height
}
/// Get the width/horizontal DPI of the image used for the size calculations
/// in Excel. See the example above.
///
/// Excel assumes a default image DPI of 96.0 and scales all other DPIs
/// relative to that.
///
pub fn width_dpi(&self) -> f64 {
self.width_dpi
}
/// Get the height/vertical DPI of the image used for the size calculations
/// in Excel. See the example above.
///
/// Excel assumes a default image DPI of 96.0 and scales all other DPIs
/// relative to that.
///
pub fn height_dpi(&self) -> f64 {
self.height_dpi
}
// Get the image width as used by header/footer VML.
pub(crate) fn vml_width(&self) -> f64 {
// Scale the height/width by the resolution, relative to 72dpi.
let mut width = self.width * 72.0 / self.width_dpi * self.scale_width;
// Excel uses a rounding based around 72 and 96 dpi.
width = width * 96.0 / 72.0 + 0.25;
width.floor() * 72.0 / 96.0
}
// Get the image height as used by header/footer VML.
pub(crate) fn vml_height(&self) -> f64 {
// Scale the height/width by the resolution, relative to 72dpi.
let mut height = self.height * 72.0 / self.height_dpi * self.scale_height;
// Excel uses a rounding based around 72 and 96 dpi.
height = height * 96.0 / 72.0 + 0.25;
height.floor() * 72.0 / 96.0
}
// Get the image short name as used by header/footer VML.
pub(crate) fn vml_name(&self) -> String {
self.vml_name.clone()
}
// Check if the image scale has changed. Mainly used by header/footer VML.
pub(crate) fn is_scaled(&self) -> bool {
self.scale_height != 1.0 || self.scale_width != 1.0
}
// Get the image position string as used by header/footer VML.
pub(crate) fn vml_position(&self) -> String {
if self.is_header {
match self.header_position {
HeaderImagePosition::Left => "LH".to_string(),
HeaderImagePosition::Right => "RH".to_string(),
HeaderImagePosition::Center => "CH".to_string(),
}
} else {
match self.header_position {
HeaderImagePosition::Left => "LF".to_string(),
HeaderImagePosition::Right => "RF".to_string(),
HeaderImagePosition::Center => "CF".to_string(),
}
}
}
/// Set an internal name used for header/footer images.
///
/// This method sets an internal image name used by header/footer VML. It is
/// mainly used for completeness in testing. It isn't useful to the end user.
///
/// # Parameters
///
/// `name` - The VML object name/description.
///
#[doc(hidden)]
pub fn set_vml_name(&mut self, name: impl Into<String>) -> &mut Image {
self.vml_name = name.into();
self
}
// -----------------------------------------------------------------------
// Internal methods.
// -----------------------------------------------------------------------
// Extract type and width and height information from an image file.
fn process_image(&mut self) -> Result<(), XlsxError> {
let data = self.data.clone();
let png_marker = &data[1..4];
let jpg_marker = unpack_u16_from_be_bytes(&data, 0);
let bmp_marker = &data[0..2];
let gif_marker = &data[0..4];
if png_marker == "PNG".as_bytes() {
self.process_png(&data);
} else if jpg_marker == 0xFFD8 {
self.process_jpg(&data);
} else if bmp_marker == "BM".as_bytes() {
self.process_bmp(&data);
} else if gif_marker == "GIF8".as_bytes() {
self.process_gif(&data);
}
// Check that we read a valid image.
if let XlsxImageType::Unknown = self.image_type {
return Err(XlsxError::UnknownImageType);
}
// Check that we read a the image dimensions.
if self.width == 0.0 || self.height == 0.0 {
return Err(XlsxError::ImageDimensionError);
}
// Set a hash for the image to allow removal of duplicates.
let mut hasher = DefaultHasher::new();
data.hash(&mut hasher);
self.hash = hasher.finish();
Ok(())
}
// Extract width and height information from a PNG file.
fn process_png(&mut self, data: &[u8]) {
let mut offset: usize = 8;
let mut width: u32 = 0;
let mut height: u32 = 0;
let mut width_dpi: f64 = 96.0;
let mut height_dpi: f64 = 96.0;
let data_length = data.len();
// Search through the image data to read the height and width in the
// IHDR element. Also read the DPI in the pHYs element, if present.
while offset < data_length {
let marker = &data[offset + 4..offset + 8];
let length = unpack_u32_from_be_bytes(data, offset);
// Read the image dimensions.
if marker == "IHDR".as_bytes() {
width = unpack_u32_from_be_bytes(data, offset + 8);
height = unpack_u32_from_be_bytes(data, offset + 12);
}
// Read the image DPI values.
if marker == "pHYs".as_bytes() {
let units = &data[offset + 16];
let x_density = unpack_u32_from_be_bytes(data, offset + 8);
let y_density = unpack_u32_from_be_bytes(data, offset + 12);
if *units == 1 {
width_dpi = f64::from(x_density) * 0.0254;
height_dpi = f64::from(y_density) * 0.0254;
self.has_default_dpi = false;
}
}
if marker == "IEND".as_bytes() {
break;
}
offset = offset + length as usize + 12;
}
self.width = f64::from(width);
self.height = f64::from(height);
self.width_dpi = width_dpi;
self.height_dpi = height_dpi;
self.image_type = XlsxImageType::Png;
}
// Extract width and height information from a PNG file.
fn process_jpg(&mut self, data: &[u8]) {
let mut offset: usize = 2;
let mut height: u32 = 0;
let mut width: u32 = 0;
let mut width_dpi: f64 = 96.0;
let mut height_dpi: f64 = 96.0;
let data_length = data.len();
// Search through the image data to read the height and width in the
// IHDR element. Also read the DPI in the pHYs element, if present.
while offset < data_length {
let marker = unpack_u16_from_be_bytes(data, offset);
let length = unpack_u16_from_be_bytes(data, offset + 2);
// Read the height and width in the 0xFFCn elements (except C4, C8
// and CC which aren't SOF markers).
if (marker & 0xFFF0) == 0xFFC0
&& marker != 0xFFC4
&& marker != 0xFFC8
&& marker != 0xFFCC
{
height = u32::from(unpack_u16_from_be_bytes(data, offset + 5));
width = u32::from(unpack_u16_from_be_bytes(data, offset + 7));
}
// Read the DPI in the 0xFFE0 element.
if marker == 0xFFE0 {
let units = &data[offset + 11];
let x_density = unpack_u16_from_be_bytes(data, offset + 12);
let y_density = unpack_u16_from_be_bytes(data, offset + 14);
if *units == 1 {
width_dpi = f64::from(x_density);
height_dpi = f64::from(y_density);
}
if *units == 2 {
width_dpi = f64::from(x_density) * 2.54;
height_dpi = f64::from(y_density) * 2.54;
self.has_default_dpi = false;
}
// Workaround for incorrect dpi.
if width_dpi == 0.0 || width_dpi == 1.0 {
width_dpi = 96.0;
}
if height_dpi == 0.0 || height_dpi == 1.0 {
height_dpi = 96.0;
}
}
if marker == 0xFFDA {
break;
}
offset = offset + length as usize + 2;
}
self.width = f64::from(width);
self.height = f64::from(height);
self.width_dpi = width_dpi;
self.height_dpi = height_dpi;
self.image_type = XlsxImageType::Jpg;
}
// Extract width and height information from a BMP file.
fn process_bmp(&mut self, data: &[u8]) {
let width_dpi: f64 = 96.0;
let height_dpi: f64 = 96.0;
let width = unpack_u32_from_le_bytes(data, 18);
let height = unpack_u32_from_le_bytes(data, 22);
self.width = f64::from(width);
self.height = f64::from(height);
self.width_dpi = width_dpi;
self.height_dpi = height_dpi;
self.image_type = XlsxImageType::Bmp;
}
// Extract width and height information from a GIF file.
fn process_gif(&mut self, data: &[u8]) {
let width = u32::from(unpack_u16_from_le_bytes(data, 6));
let height = u32::from(unpack_u16_from_le_bytes(data, 8));
self.width = f64::from(width);
self.height = f64::from(height);
self.width_dpi = 96.0;
self.height_dpi = 96.0;
self.image_type = XlsxImageType::Gif;
}
}
// Trait for objects that have a component stored in the drawing.xml file.
impl DrawingObject for Image {
fn x_offset(&self) -> u32 {
self.x_offset
}
fn y_offset(&self) -> u32 {
self.y_offset
}
fn width_scaled(&self) -> f64 {
self.width * self.scale_width * 96.0 / self.width_dpi
}
fn height_scaled(&self) -> f64 {
self.height * self.scale_height * 96.0 / self.height_dpi
}
fn object_movement(&self) -> ObjectMovement {
self.object_movement
}
fn alt_text(&self) -> String {
self.alt_text.clone()
}
fn decorative(&self) -> bool {
self.decorative
}
fn drawing_type(&self) -> DrawingType {
self.drawing_type
}
}
// -----------------------------------------------------------------------
// Helper enums/structs/functions.
// -----------------------------------------------------------------------
/// The `ObjectMovement` enum defines the movement of worksheet objects such as
/// images and charts.
///
/// This enum defines the way control a worksheet object, such a an images or
/// charts, moves when the cells underneath it are moved, resized or deleted.
/// This equates to the following Excel options:
///
/// <img src="https://rustxlsxwriter.github.io/images/object_movement.png">
///
/// Used with [`image.set_object_movement`](Image::set_object_movement).
///