Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.65 KB | None | 0 0
  1. $ strings ~/Desktop/stephen-wolfram-portrait.jpg | grep -i face
  2.  
  3. <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="XMP Core 5.1.2">
  4. ...
  5. <rdf:Description mwg-rs:Name="Stephen Wolfram" mwg-rs:Type="Face">
  6. <mwg-rs:Area stArea:x="0.51529" stArea:y="0.194588" stArea:w="0.302752" stArea:h="0.306701" stArea:unit="normalized"/>
  7. </rdf:Description>
  8. ...
  9. </x:xmpmeta>
  10.  
  11. $ ./exiftool ~/Desktop/stephen-wolfram-portrait.jpg
  12.  
  13. ...
  14. Region Applied To Dimensions W : 327
  15. Region Applied To Dimensions H : 388
  16. Region Applied To Dimensions Unit: pixel
  17. Region Name : Stephen Wolfram
  18. Region Type : Face
  19. Region Area X : 0.51529
  20. Region Area Y : 0.194588
  21. Region Area W : 0.302752
  22. Region Area H : 0.306701
  23. Region Area Unit : normalized
  24.  
  25. Import["~/Desktop/stephen-wolfram-portrait.jpg","RawXMP"]
  26.  
  27. <|
  28. DocumentID -> xmp.did:F13E3BFC48A911E795D0ECF78D2F4D6F,
  29. InstanceID -> xmp.iid:F13E3BFB48A911E795D0ECF78D2F4D6F,
  30. OriginalDocumentID -> xmp.did:fe3d7bde-47fb-4e33-90ba-85337d7f6aae,
  31. DerivedFrom -> type= Struct ,
  32. DerivedFrom/stRef:instanceID -> xmp.iid:78f88771-4e7b-4513-9fd2-f084264b8861,
  33. DerivedFrom/stRef:documentID -> adobe:docid:photoshop:64644718-9012-117a-8583-a9a1e6363c97,
  34. CreatorTool -> Adobe Photoshop CC 2017 (Macintosh),
  35. ModifyDate -> 2019-06-01T06:51:30-07:00
  36. |>
  37.  
  38.  
  39.  
  40. Import["~/Desktop/stephen-wolfram-portrait.jpg","XMP"]
  41.  
  42.  
  43. <|
  44. BasicSchema -> <|
  45. CreatorTool -> Adobe Photoshop CC 2017 (Macintosh),
  46. ModifyDate -> Sat 1 Jun 2019 06:51:30GMT-7.
  47. |>,
  48. MediaManagementSchema -> <|
  49. DerivedFrom -> <|
  50. DerivedFrom -> <|
  51. InstanceID -> xmp.iid:78f88771-4e7b-4513-9fd2-f084264b8861,
  52. DocumentID -> adobe:docid:photoshop:64644718-9012-117a-8583-a9a1e6363c97
  53. |>
  54. |>,
  55. DocumentID -> xmp.did:F13E3BFC48A911E795D0ECF78D2F4D6F,
  56. InstanceID -> xmp.iid:F13E3BFB48A911E795D0ECF78D2F4D6F,
  57. OriginalDocumentID -> xmp.did:fe3d7bde-47fb-4e33-90ba-85337d7f6aae
  58. |>,
  59. RightsManagementSchema -> <|
  60. DerivedFrom -> <|
  61. DerivedFrom -> <|
  62. InstanceID -> xmp.iid:78f88771-4e7b-4513-9fd2-f084264b8861,
  63. DocumentID -> adobe:docid:photoshop:64644718-9012-117a-8583-a9a1e6363c97
  64. |>
  65. |>
  66. |>,
  67. PagedTextSchema -> <|
  68. DerivedFrom -> <|
  69. DerivedFrom -> <|
  70. InstanceID -> xmp.iid:78f88771-4e7b-4513-9fd2-f084264b8861,
  71. DocumentID -> adobe:docid:photoshop:64644718-9012-117a-8583-a9a1e6363c97
  72. |>
  73. |>
  74. |>
  75. |>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement