private void setBlueprintTextRectangles(HttpServletRequest request, Space space) throws IOException {
DateTime now = new DateTime();
Space spaceWithBlueprint = getSuroundingSpaceMostRecentBlueprint(space);
BlueprintFile mostRecentBlueprint = spaceWithBlueprint.getBlueprintFile().get();
if (mostRecentBlueprint != null) {
final byte[] blueprintBytes = mostRecentBlueprint.getContent();
final InputStream inputStream = new ByteArrayInputStream(blueprintBytes);
BlueprintTextRectangles blueprintTextRectangles =
SpaceBlueprintsDWGProcessor.getBlueprintTextRectangles(inputStream, spaceWithBlueprint, now, false, false,
true, false, null);