2022.01.25.2
26
MockupEngineer/templates/imac212015/__init__.py
Normal file
|
@ -0,0 +1,26 @@
|
|||
from dataclasses import dataclass
|
||||
|
||||
from MockupEngineer.templates import Template
|
||||
|
||||
|
||||
@dataclass
|
||||
class Device(Template):
|
||||
def __device_init__(self):
|
||||
self.manufacturer = 'Apple'
|
||||
self.name = 'iMac 21"'
|
||||
self.type = 'pc'
|
||||
self.year = 2015
|
||||
self.resolution = '{width} x {height}'.format(width=4096, height=2304)
|
||||
|
||||
self.__template_path__ = 'imac212015'
|
||||
self.__colors__ = {"Silver": 'silver'}
|
||||
|
||||
self.__portrait_width__ = 1693
|
||||
self.__portrait_height__ = 954
|
||||
self.__portrait_x__ = 173
|
||||
self.__portrait_y__ = 178
|
||||
|
||||
self.__landscape_width__ = 1693
|
||||
self.__landscape_height__ = 954
|
||||
self.__landscape_x__ = 173
|
||||
self.__landscape_y__ = 178
|
BIN
MockupEngineer/templates/imac212015/example.png
Normal file
After Width: | Height: | Size: 560 KiB |
BIN
MockupEngineer/templates/imac212015/silver/landscape.png
Normal file
After Width: | Height: | Size: 508 KiB |
BIN
MockupEngineer/templates/imac212015/silver/portrait.png
Normal file
After Width: | Height: | Size: 508 KiB |
26
MockupEngineer/templates/macbookpro132015/__init__.py
Normal file
|
@ -0,0 +1,26 @@
|
|||
from dataclasses import dataclass
|
||||
|
||||
from MockupEngineer.templates import Template
|
||||
|
||||
|
||||
@dataclass
|
||||
class Device(Template):
|
||||
def __device_init__(self):
|
||||
self.manufacturer = 'Apple'
|
||||
self.name = 'MacBook Pro 13"'
|
||||
self.type = 'pc'
|
||||
self.year = 2015
|
||||
self.resolution = '{width} x {height}'.format(width=2560, height=1600)
|
||||
|
||||
self.__template_path__ = 'macbookpro132015'
|
||||
self.__colors__ = {"Silver": 'silver'}
|
||||
|
||||
self.__portrait_width__ = 1424
|
||||
self.__portrait_height__ = 890
|
||||
self.__portrait_x__ = 388
|
||||
self.__portrait_y__ = 176
|
||||
|
||||
self.__landscape_width__ = 1424
|
||||
self.__landscape_height__ = 890
|
||||
self.__landscape_x__ = 388
|
||||
self.__landscape_y__ = 176
|
BIN
MockupEngineer/templates/macbookpro132015/example.png
Normal file
After Width: | Height: | Size: 374 KiB |
BIN
MockupEngineer/templates/macbookpro132015/silver/landscape.png
Normal file
After Width: | Height: | Size: 307 KiB |
BIN
MockupEngineer/templates/macbookpro132015/silver/portrait.png
Normal file
After Width: | Height: | Size: 307 KiB |
26
MockupEngineer/templates/macbookpro152015/__init__.py
Normal file
|
@ -0,0 +1,26 @@
|
|||
from dataclasses import dataclass
|
||||
|
||||
from MockupEngineer.templates import Template
|
||||
|
||||
|
||||
@dataclass
|
||||
class Device(Template):
|
||||
def __device_init__(self):
|
||||
self.manufacturer = 'Apple'
|
||||
self.name = 'MacBook Pro 15"'
|
||||
self.type = 'pc'
|
||||
self.year = 2015
|
||||
self.resolution = '{width} x {height}'.format(width=2880, height=1800)
|
||||
|
||||
self.__template_path__ = 'macbookpro152015'
|
||||
self.__colors__ = {"Silver": 'silver'}
|
||||
|
||||
self.__portrait_width__ = 1450
|
||||
self.__portrait_height__ = 906
|
||||
self.__portrait_x__ = 328
|
||||
self.__portrait_y__ = 167
|
||||
|
||||
self.__landscape_width__ = 1450
|
||||
self.__landscape_height__ = 906
|
||||
self.__landscape_x__ = 328
|
||||
self.__landscape_y__ = 167
|
BIN
MockupEngineer/templates/macbookpro152015/example.png
Normal file
After Width: | Height: | Size: 347 KiB |
BIN
MockupEngineer/templates/macbookpro152015/silver/landscape.png
Normal file
After Width: | Height: | Size: 263 KiB |
BIN
MockupEngineer/templates/macbookpro152015/silver/portrait.png
Normal file
After Width: | Height: | Size: 263 KiB |
19
readme.md
|
@ -137,6 +137,20 @@ Full list of all currently supported mockups
|
|||
* Just Black
|
||||
* Sorta Sage
|
||||
|
||||
### Computers
|
||||
* [Apple iMac 21"](https://raw.githubusercontent.com/ulbwazhine/MockupEngineer/main/MockupEngineer/templates/imac212015/example.png) [4096 x 2304] (2015)
|
||||
* Silver
|
||||
|
||||
* [Apple MacBook 12"](https://raw.githubusercontent.com/ulbwazhine/MockupEngineer/main/MockupEngineer/templates/macbook122016/example.png) [2304 x 1440] (2016)
|
||||
* Gold
|
||||
* Space Gray
|
||||
|
||||
* [Apple MacBook Pro 13"](https://raw.githubusercontent.com/ulbwazhine/MockupEngineer/main/MockupEngineer/templates/macbookpro132015/example.png) [2560 x 1600] (2015)
|
||||
* Silver
|
||||
|
||||
* [Apple MacBook Pro 15"](https://raw.githubusercontent.com/ulbwazhine/MockupEngineer/main/MockupEngineer/templates/macbookpro152015/example.png) [2880 x 1800] (2015)
|
||||
* Silver
|
||||
|
||||
### Tablets
|
||||
* [Apple iPad 9](https://raw.githubusercontent.com/ulbwazhine/MockupEngineer/main/MockupEngineer/templates/ipad9/example.png) [2160 x 1620] (2021)
|
||||
* Gold
|
||||
|
@ -163,11 +177,6 @@ Full list of all currently supported mockups
|
|||
* Silver
|
||||
* Space Gray
|
||||
|
||||
### Computers
|
||||
* [Apple MacBook 12"](https://raw.githubusercontent.com/ulbwazhine/MockupEngineer/main/MockupEngineer/templates/macbook122016/example.png) [2304 x 1440] (2016)
|
||||
* Gold
|
||||
* Space Gray
|
||||
|
||||
### Wearable devices
|
||||
* [Apple Watch Series 6 44mm](https://raw.githubusercontent.com/ulbwazhine/MockupEngineer/main/MockupEngineer/templates/watchseries644mm/example.png) [368 x 448] (2020)
|
||||
* Aluminum Case - Blue
|
||||
|
|