Skip to content

Commit 0d505a5

Browse files
committed
Fixing the logo dimensions.
1 parent 95809b5 commit 0d505a5

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

Logo.ipynb

+13-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
{
1111
"cell_type": "code",
1212
"execution_count": 1,
13-
"metadata": {},
13+
"metadata": {
14+
"collapsed": true
15+
},
1416
"outputs": [],
1517
"source": [
1618
"%matplotlib inline\n",
@@ -67,14 +69,20 @@
6769
},
6870
{
6971
"cell_type": "code",
70-
"execution_count": 4,
71-
"metadata": {},
72+
"execution_count": 24,
73+
"metadata": {
74+
"collapsed": true
75+
},
7276
"outputs": [],
7377
"source": [
7478
"img = Image.open(\"logo-raw.png\")\n",
79+
"#left = 302\n",
80+
"#top = 164\n",
81+
"#width = 1236\n",
82+
"#height = width\n",
7583
"left = 302\n",
76-
"top = 164\n",
77-
"width = 1236\n",
84+
"top = 95\n",
85+
"width = 2020\n",
7886
"height = width\n",
7987
"box = (left, top, left+width, top+height)\n",
8088
"logo = img.crop(box)\n",

logo.png

52.5 KB
Loading

0 commit comments

Comments
 (0)